aboutsummaryrefslogtreecommitdiffstats
path: root/models/user/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/user/main_test.go')
-rw-r--r--models/user/main_test.go21
1 files changed, 12 insertions, 9 deletions
diff --git a/models/user/main_test.go b/models/user/main_test.go
index 55e5f9341c..09af550a95 100644
--- a/models/user/main_test.go
+++ b/models/user/main_test.go
@@ -12,13 +12,16 @@ import (
)
func TestMain(m *testing.M) {
- unittest.MainTest(m, filepath.Join("..", ".."),
- "email_address.yml",
- "user_redirect.yml",
- "follow.yml",
- "user_open_id.yml",
- "two_factor.yml",
- "oauth2_application.yml",
- "user.yml",
- )
+ unittest.MainTest(m, &unittest.TestOptions{
+ GiteaRootPath: filepath.Join("..", ".."),
+ FixtureFiles: []string{
+ "email_address.yml",
+ "user_redirect.yml",
+ "follow.yml",
+ "user_open_id.yml",
+ "two_factor.yml",
+ "oauth2_application.yml",
+ "user.yml",
+ },
+ })
}