1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-27 22:04:28 -04:00
gitea/routers/web/repo/main_test.go

18 lines
316 B
Go
Raw Normal View History

2017-11-30 10:52:15 -05:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2017-11-30 10:52:15 -05:00
package repo
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/unittest"
2017-11-30 10:52:15 -05:00
)
func TestMain(m *testing.M) {
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: filepath.Join("..", "..", ".."),
})
2017-11-30 10:52:15 -05:00
}