1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-25 08:59:31 -05:00
forgejo/models/migrations/v1_19/main_test.go

15 lines
262 B
Go
Raw Normal View History

2022-11-07 23:07:46 -05:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2022-11-07 23:07:46 -05:00
package v1_19 //nolint
2022-11-07 23:07:46 -05:00
import (
"testing"
migration_tests "code.gitea.io/gitea/models/migrations/test"
2022-11-07 23:07:46 -05:00
)
func TestMain(m *testing.M) {
migration_tests.MainTest(m)
2022-11-07 23:07:46 -05:00
}