2019-11-01 22:51:22 +00:00
|
|
|
// Copyright 2019 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 webhook
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-04-25 18:03:01 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-12-15 05:39:34 +00:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
2019-11-01 22:51:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-25 18:03:01 +00:00
|
|
|
setting.LoadForTest()
|
|
|
|
setting.NewQueueService()
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
2022-04-25 18:03:01 +00:00
|
|
|
SetUp: Init,
|
2022-04-14 13:58:21 +00:00
|
|
|
})
|
2019-11-01 22:51:22 +00:00
|
|
|
}
|