2021-11-18 00:58:42 -05:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-18 00:58:42 -05:00
|
|
|
|
2022-10-16 18:29:26 -05:00
|
|
|
package system_test
|
2021-11-18 00:58:42 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-24 21:31:57 -05:00
|
|
|
|
2023-09-07 23:51:15 -05:00
|
|
|
_ "code.gitea.io/gitea/models" // register models
|
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
|
|
|
_ "code.gitea.io/gitea/models/activities"
|
2022-10-16 18:29:26 -05:00
|
|
|
_ "code.gitea.io/gitea/models/system" // register models of system
|
2021-11-18 00:58:42 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 20:38:53 -05:00
|
|
|
unittest.MainTest(m)
|
2021-11-18 00:58:42 -05:00
|
|
|
}
|