mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Use a struct as test options (#19393)
* Use a struct as test options * Fix name * Fix test
This commit is contained in:
		@@ -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",
 | 
			
		||||
		},
 | 
			
		||||
	})
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user