diff options
Diffstat (limited to 'models/migrations/base/main_test.go')
-rw-r--r-- | models/migrations/base/main_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/models/migrations/base/main_test.go b/models/migrations/base/main_test.go new file mode 100644 index 00000000..c1c78915 --- /dev/null +++ b/models/migrations/base/main_test.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package base + +import ( + "testing" +) + +func TestMain(m *testing.M) { + MainTest(m) +} |