2021-11-17 22:58:42 -07:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-17 22:58:42 -07:00
|
|
|
|
2022-10-16 17:29:26 -06:00
|
|
|
package avatars_test
|
2021-11-17 22:58:42 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-08-24 20:31:57 -06:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
|
|
_ "code.gitea.io/gitea/models/activities"
|
|
|
|
_ "code.gitea.io/gitea/models/perm/access"
|
2021-11-17 22:58:42 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 19:38:53 -06:00
|
|
|
unittest.MainTest(m)
|
2021-11-17 22:58:42 -07:00
|
|
|
}
|