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 19:29:26 -04:00
|
|
|
package system_test
|
2021-11-18 00:58:42 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-24 22:31:57 -04:00
|
|
|
|
2023-09-08 00:51:15 -04:00
|
|
|
_ "code.gitea.io/gitea/models" // register models
|
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
|
|
|
_ "code.gitea.io/gitea/models/activities"
|
2022-10-16 19:29:26 -04: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 21:38:53 -04:00
|
|
|
unittest.MainTest(m)
|
2021-11-18 00:58:42 -05:00
|
|
|
}
|