2021-11-22 04:47:23 -05:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-11 15:03:30 +08:00
|
|
|
|
2022-06-15 15:02:00 +08:00
|
|
|
package user_test
|
2021-11-11 15:03:30 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
"forgejo.org/models/unittest"
|
2022-06-15 15:02:00 +08:00
|
|
|
|
2025-03-27 19:40:14 +00:00
|
|
|
_ "forgejo.org/models"
|
|
|
|
_ "forgejo.org/models/actions"
|
|
|
|
_ "forgejo.org/models/activities"
|
|
|
|
_ "forgejo.org/models/user"
|
2021-11-11 15:03:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-28 09:38:53 +08:00
|
|
|
unittest.MainTest(m)
|
2021-11-11 15:03:30 +08:00
|
|
|
}
|