1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-08-03 00:45:22 +02:00

Move tests as seperate sub packages to reduce duplicated file names (#19951)

This commit is contained in:
Lunny Xiao 2022-06-15 15:02:00 +08:00 committed by GitHub
parent b4d420d865
commit d91d4db344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 901 additions and 899 deletions

21
models/db/main_test.go Normal file
View file

@ -0,0 +1,21 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package db_test
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
_ "code.gitea.io/gitea/models"
_ "code.gitea.io/gitea/models/repo"
)
func TestMain(m *testing.M) {
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: filepath.Join("..", ".."),
})
}