2021-09-24 07:32:56 -04: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-01-02 08:12:35 -05:00
|
|
|
package auth
|
2021-09-24 07:32:56 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 09:36:47 -05:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-09-24 07:32:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 09:58:21 -04:00
|
|
|
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",
|
|
|
|
},
|
|
|
|
})
|
2021-09-24 07:32:56 -04:00
|
|
|
}
|