2021-09-24 05:32:56 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-24 05:32:56 -06:00
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
package auth_test
|
2021-09-24 05:32:56 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-24 20:31:57 -06: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 05:32:56 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 07:58:21 -06:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-09-24 05:32:56 -06:00
|
|
|
}
|