Files
Atay-Makhzan/models/main_test.go
T

41 lines
975 B
Go
Raw Normal View History

2020-04-05 01:20:50 -05:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2020-04-05 01:20:50 -05:00
2017-05-20 04:48:22 -04:00
package models
import (
"testing"
activities_model "code.gitea.io/gitea/models/activities"
"code.gitea.io/gitea/models/organization"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
2021-12-10 16:14:24 +08:00
"code.gitea.io/gitea/modules/setting"
_ "code.gitea.io/gitea/models/system"
2017-06-04 14:28:17 -04:00
"github.com/stretchr/testify/assert"
2017-05-20 04:48:22 -04:00
)
2021-12-10 16:14:24 +08:00
func init() {
setting.SetCustomPathAndConf("", "", "")
setting.LoadForTest()
}
2017-06-04 14:28:17 -04:00
// TestFixturesAreConsistent assert that test fixtures are consistent
func TestFixturesAreConsistent(t *testing.T) {
assert.NoError(t, unittest.PrepareTestDatabase())
unittest.CheckConsistencyFor(t,
&user_model.User{},
&repo_model.Repository{},
&organization.Team{},
&activities_model.Action{})
2017-06-04 14:28:17 -04:00
}
2017-05-20 04:48:22 -04:00
func TestMain(m *testing.M) {
2022-04-14 21:58:21 +08:00
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: "..",
})
2017-05-20 04:48:22 -04:00
}