Files

20 lines
432 B
Go
Raw Permalink Normal View History

2021-11-18 13:58:42 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-11-18 13:58:42 +08:00
package system_test
2021-11-18 13:58:42 +08:00
import (
"testing"
"code.gitea.io/gitea/models/unittest"
_ "code.gitea.io/gitea/models" // register models
_ "code.gitea.io/gitea/models/actions"
_ "code.gitea.io/gitea/models/activities"
_ "code.gitea.io/gitea/models/system" // register models of system
2021-11-18 13:58:42 +08:00
)
func TestMain(m *testing.M) {
2023-09-28 09:38:53 +08:00
unittest.MainTest(m)
2021-11-18 13:58:42 +08:00
}