2022-11-08 09:37:46 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-11-08 09:37:46 +05:30
|
|
|
|
2022-12-08 13:51:37 +05:30
|
|
|
package v1_19 //nolint
|
2022-11-08 09:37:46 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
base.MainTest(m)
|
|
|
|
}
|