summaryrefslogtreecommitdiffstats
path: root/models/migrations/base/main_test.go
blob: c625ef02b8f5f5edd61d0458f3eabf2666c8f836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package base

import (
	"testing"

	migrations_tests "code.gitea.io/gitea/models/migrations/test"
)

func TestMain(m *testing.M) {
	migrations_tests.MainTest(m)
}