Files
Atay-Makhzan/models/admin/main_test.go
T

23 lines
508 B
Go
Raw Normal View History

2021-11-18 13:58:42 +08:00
// 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 admin_test
2021-11-18 13:58:42 +08:00
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
_ "code.gitea.io/gitea/models"
_ "code.gitea.io/gitea/models/activities"
_ "code.gitea.io/gitea/models/perm/access"
2021-11-18 13:58:42 +08:00
)
func TestMain(m *testing.M) {
2022-04-14 21:58:21 +08:00
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: filepath.Join("..", ".."),
})
2021-11-18 13:58:42 +08:00
}