Files
Atay-Makhzan/models/avatars/main_test.go
T

22 lines
438 B
Go
Raw Normal View History

2021-11-18 13:58:42 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-11-18 13:58:42 +08:00
package avatars_test
2021-11-18 13:58:42 +08:00
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
_ "code.gitea.io/gitea/models"
_ "code.gitea.io/gitea/models/activities"
_ "code.gitea.io/gitea/models/perm/access"
2021-11-18 13:58:42 +08:00
)
func TestMain(m *testing.M) {
2022-04-14 21:58:21 +08:00
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: filepath.Join("..", ".."),
})
2021-11-18 13:58:42 +08:00
}