2021-11-18 13:58:42 +08:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-18 13:58:42 +08:00
|
|
|
|
2022-10-17 07:29:26 +08:00
|
|
|
package system_test
|
2021-11-18 13:58:42 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
"forgejo.org/models/unittest"
|
2022-08-25 10:31:57 +08:00
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
_ "forgejo.org/models" // register models
|
|
|
|
_ "forgejo.org/models/actions"
|
|
|
|
_ "forgejo.org/models/activities"
|
|
|
|
_ "forgejo.org/models/forgefed"
|
|
|
|
_ "forgejo.org/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
|
|
|
}
|