mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
15 lines
257 B
Go
15 lines
257 B
Go
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/models/migrations/base"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
base.MainTest(m)
|
||
|
}
|