diff options
Diffstat (limited to 'modules/migrations/main_test.go')
-rw-r--r-- | modules/migrations/main_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/migrations/main_test.go b/modules/migrations/main_test.go new file mode 100644 index 0000000000..a982ab3e6f --- /dev/null +++ b/modules/migrations/main_test.go @@ -0,0 +1,17 @@ +// Copyright 2019 The Gitea Authors. All rights reserved. +// Copyright 2018 Jonas Franz. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package migrations + +import ( + "path/filepath" + "testing" + + "code.gitea.io/gitea/models" +) + +func TestMain(m *testing.M) { + models.MainTest(m, filepath.Join("..", "..")) +} |