2021-09-24 13:32:56 +02: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-08-25 04:31:57 +02:00
|
|
|
package auth_test
|
2021-09-24 13:32:56 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-25 04:31:57 +02:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
|
|
_ "code.gitea.io/gitea/models/activities"
|
|
|
|
_ "code.gitea.io/gitea/models/auth"
|
|
|
|
_ "code.gitea.io/gitea/models/perm/access"
|
2021-09-24 13:32:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 15:58:21 +02:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-09-24 13:32:56 +02:00
|
|
|
}
|