2022-01-16 00:52:56 +08:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-01-16 00:52:56 +08:00
|
|
|
|
2022-12-08 16:21:37 +08:00
|
|
|
package v1_18 //nolint
|
2022-01-16 00:52:56 +08:00
|
|
|
|
|
|
|
import (
|
2022-11-02 16:54:36 +08:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
2022-01-16 00:52:56 +08:00
|
|
|
)
|
|
|
|
|
2022-11-02 16:54:36 +08:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
base.MainTest(m)
|
2022-01-16 00:52:56 +08:00
|
|
|
}
|