2021-10-11 00:40:03 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package issues
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-03-31 11:20:39 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-10-11 00:40:03 +02:00
|
|
|
)
|
|
|
|
|
2022-03-31 11:20:39 +02:00
|
|
|
func init() {
|
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
|
|
|
setting.LoadForTest()
|
|
|
|
}
|
|
|
|
|
2021-10-11 00:40:03 +02:00
|
|
|
func TestMain(m *testing.M) {
|
2022-03-31 11:20:39 +02:00
|
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
|
|
|
"reaction.yml",
|
|
|
|
"user.yml",
|
|
|
|
"repository.yml",
|
|
|
|
)
|
2021-10-11 00:40:03 +02:00
|
|
|
}
|