mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
844 B
33 lines
844 B
// Copyright 2020 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
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" |
|
|
|
_ "code.gitea.io/gitea/models/actions" |
|
_ "code.gitea.io/gitea/models/system" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
// 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{}) |
|
} |
|
|
|
func TestMain(m *testing.M) { |
|
unittest.MainTest(m) |
|
}
|
|
|