aboutsummaryrefslogtreecommitdiffstats
path: root/models/migrations/base/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/migrations/base/main_test.go')
-rw-r--r--models/migrations/base/main_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/models/migrations/base/main_test.go b/models/migrations/base/main_test.go
new file mode 100644
index 0000000000..290d87214a
--- /dev/null
+++ b/models/migrations/base/main_test.go
@@ -0,0 +1,13 @@
+// Copyright 2021 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package base
+
+import (
+ "testing"
+)
+
+func TestMain(m *testing.M) {
+ MainTest(m)
+}