diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-04-14 21:58:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 21:58:21 +0800 |
commit | b8911fb45673fdc3fce587892c4d9215e7c15019 (patch) | |
tree | df72d047049f53cdbe9cb5d16a03b814f29e9ca6 /models/auth | |
parent | 4dabc212c70d0cb0874d3af61d1ea24abd468f7e (diff) | |
download | gitea-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/auth')
-rw-r--r-- | models/auth/main_test.go | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/models/auth/main_test.go b/models/auth/main_test.go index 4255f488fe..ccbdd4e81c 100644 --- a/models/auth/main_test.go +++ b/models/auth/main_test.go @@ -12,11 +12,14 @@ import ( ) func TestMain(m *testing.M) { - unittest.MainTest(m, filepath.Join("..", ".."), - "login_source.yml", - "oauth2_application.yml", - "oauth2_authorization_code.yml", - "oauth2_grant.yml", - "webauthn_credential.yml", - ) + unittest.MainTest(m, &unittest.TestOptions{ + GiteaRootPath: filepath.Join("..", ".."), + FixtureFiles: []string{ + "login_source.yml", + "oauth2_application.yml", + "oauth2_authorization_code.yml", + "oauth2_grant.yml", + "webauthn_credential.yml", + }, + }) } |