2021-11-18 05:58:42 +00: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.
|
|
|
|
|
2022-10-16 23:29:26 +00:00
|
|
|
package system_test
|
2021-11-18 05:58:42 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-25 02:31:57 +00:00
|
|
|
|
2022-10-16 23:29:26 +00:00
|
|
|
_ "code.gitea.io/gitea/models" // register models
|
|
|
|
_ "code.gitea.io/gitea/models/system" // register models of system
|
2021-11-18 05:58:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-11-18 05:58:42 +00:00
|
|
|
}
|