summaryrefslogtreecommitdiffstats
path: root/models/organization
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2022-04-14 21:58:21 +0800
committerGitHub <noreply@github.com>2022-04-14 21:58:21 +0800
commitb8911fb45673fdc3fce587892c4d9215e7c15019 (patch)
treedf72d047049f53cdbe9cb5d16a03b814f29e9ca6 /models/organization
parent4dabc212c70d0cb0874d3af61d1ea24abd468f7e (diff)
downloadgitea-b8911fb45673fdc3fce587892c4d9215e7c15019.tar.gz
gitea-b8911fb45673fdc3fce587892c4d9215e7c15019.zip
Use a struct as test options (#19393)
* Use a struct as test options * Fix name * Fix test
Diffstat (limited to 'models/organization')
-rw-r--r--models/organization/main_test.go21
1 files changed, 12 insertions, 9 deletions
diff --git a/models/organization/main_test.go b/models/organization/main_test.go
index a2cb911021..711b86b9bd 100644
--- a/models/organization/main_test.go
+++ b/models/organization/main_test.go
@@ -12,13 +12,16 @@ import (
)
func TestMain(m *testing.M) {
- unittest.MainTest(m, filepath.Join("..", ".."),
- "user.yml",
- "org_user.yml",
- "team.yml",
- "team_repo.yml",
- "team_unit.yml",
- "team_user.yml",
- "repository.yml",
- )
+ unittest.MainTest(m, &unittest.TestOptions{
+ GiteaRootPath: filepath.Join("..", ".."),
+ FixtureFiles: []string{
+ "user.yml",
+ "org_user.yml",
+ "team.yml",
+ "team_repo.yml",
+ "team_unit.yml",
+ "team_user.yml",
+ "repository.yml",
+ },
+ })
}