2021-11-22 02:47:23 -07:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2021-11-11 00:03:30 -07: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 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-11 00:03:30 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 07:36:47 -07:00
|
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
2021-11-11 00:03:30 -07:00
|
|
|
"email_address.yml",
|
|
|
|
"user_redirect.yml",
|
2021-11-17 02:58:31 -07:00
|
|
|
"follow.yml",
|
|
|
|
"user_open_id.yml",
|
2021-11-24 02:49:20 -07:00
|
|
|
"two_factor.yml",
|
|
|
|
"oauth2_application.yml",
|
|
|
|
"user.yml",
|
2021-11-11 00:03:30 -07:00
|
|
|
)
|
|
|
|
}
|