2021-09-24 17:02:56 +05:30
|
|
|
// 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.
|
|
|
|
|
|
|
|
package login
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-09-24 17:02:56 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 20:06:47 +05:30
|
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
2021-09-24 17:02:56 +05:30
|
|
|
"login_source.yml",
|
|
|
|
"oauth2_application.yml",
|
|
|
|
"oauth2_authorization_code.yml",
|
|
|
|
"oauth2_grant.yml",
|
2021-09-25 18:30:12 +05:30
|
|
|
"u2f_registration.yml",
|
2021-09-24 17:02:56 +05:30
|
|
|
)
|
|
|
|
}
|