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