forgejo/models/migrations/v1_19/main_test.go

15 lines
262 B
Go
Raw Normal View History

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