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