2021-11-22 10:47:23 +01:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2021-11-11 08:03:30 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-11 08:03:30 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 15:36:47 +01:00
|
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
2021-11-11 08:03:30 +01:00
|
|
|
"email_address.yml",
|
|
|
|
"user_redirect.yml",
|
2021-11-17 10:58:31 +01:00
|
|
|
"follow.yml",
|
|
|
|
"user_open_id.yml",
|
2021-11-24 10:49:20 +01:00
|
|
|
"two_factor.yml",
|
|
|
|
"oauth2_application.yml",
|
|
|
|
"user.yml",
|
2021-11-11 08:03:30 +01:00
|
|
|
)
|
|
|
|
}
|