2022-11-08 04:07:46 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-11-08 04:07:46 +00:00
|
|
|
|
2022-12-08 08:21:37 +00:00
|
|
|
package v1_19 //nolint
|
2022-11-08 04:07:46 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
base.MainTest(m)
|
|
|
|
}
|