0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-29 00:16:32 +02:00
gitea/models/db/main_test.go

18 lines
265 B
Go

// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package db_test
import (
"testing"
"gitea.dev/models/unittest"
_ "gitea.dev/models"
_ "gitea.dev/models/repo"
)
func TestMain(m *testing.M) {
unittest.MainTest(m)
}