2022-03-29 06:29:02 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-03-29 06:29:02 +00:00
|
|
|
|
2022-06-15 07:02:00 +00:00
|
|
|
package organization_test
|
2022-03-29 06:29:02 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-06-15 07:02:00 +00:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
|
|
_ "code.gitea.io/gitea/models/organization"
|
|
|
|
_ "code.gitea.io/gitea/models/repo"
|
|
|
|
_ "code.gitea.io/gitea/models/user"
|
2022-03-29 06:29:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2022-03-29 06:29:02 +00:00
|
|
|
}
|