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

22 lines
516 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 system_test
2021-11-18 13:58:42 +08:00
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
_ "code.gitea.io/gitea/models" // register models
_ "code.gitea.io/gitea/models/system" // register models of system
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
}