2022-11-07 23:07:46 -05:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-11-07 23:07:46 -05:00
|
|
|
|
2022-12-08 03:21:37 -05:00
|
|
|
package v1_19 //nolint
|
2022-11-07 23:07:46 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2024-07-14 09:34:42 -04:00
|
|
|
migration_tests "code.gitea.io/gitea/models/migrations/test"
|
2022-11-07 23:07:46 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2024-07-14 09:34:42 -04:00
|
|
|
migration_tests.MainTest(m)
|
2022-11-07 23:07:46 -05:00
|
|
|
}
|