mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
17 lines
307 B
Go
17 lines
307 B
Go
|
// Copyright 2023 The Forgejo Authors
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package migrations
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/structs"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestForgejoDownload(t *testing.T) {
|
||
|
require.NotNil(t, getFactoryFromServiceType(structs.ForgejoService))
|
||
|
}
|