blob: 2297f74f7315cfa29917a0f8f5b646e877bbdc88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package forgejo_migrations //nolint:revive
import (
"testing"
migration_tests "code.gitea.io/gitea/models/migrations/test"
)
func TestMain(m *testing.M) {
migration_tests.MainTest(m)
}
|