2022-03-29 02:29:02 -04:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-03-29 02:29:02 -04:00
|
|
|
|
2022-06-15 03:02:00 -04:00
|
|
|
package organization_test
|
2022-03-29 02:29:02 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-06-15 03:02:00 -04: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 02:29:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 09:58:21 -04:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2022-03-29 02:29:02 -04:00
|
|
|
}
|