aboutsummaryrefslogtreecommitdiffstats
path: root/models/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/main_test.go')
-rw-r--r--models/main_test.go16
1 files changed, 12 insertions, 4 deletions
diff --git a/models/main_test.go b/models/main_test.go
index ad9276330f..15bece7bf4 100644
--- a/models/main_test.go
+++ b/models/main_test.go
@@ -7,17 +7,25 @@ package models
import (
"testing"
- "code.gitea.io/gitea/models/db"
+ "code.gitea.io/gitea/models/unittest"
"github.com/stretchr/testify/assert"
)
// TestFixturesAreConsistent assert that test fixtures are consistent
func TestFixturesAreConsistent(t *testing.T) {
- assert.NoError(t, db.PrepareTestDatabase())
- CheckConsistencyForAll(t)
+ assert.NoError(t, unittest.PrepareTestDatabase())
+ CheckConsistencyFor(t,
+ &User{},
+ &Repository{},
+ &Issue{},
+ &PullRequest{},
+ &Milestone{},
+ &Label{},
+ &Team{},
+ &Action{})
}
func TestMain(m *testing.M) {
- db.MainTest(m, "..")
+ unittest.MainTest(m, "..")
}