2021-11-09 22:13:16 -07:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-09 22:13:16 -07:00
|
|
|
|
|
|
|
package webhook
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-09 22:13:16 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 07:58:21 -06:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
FixtureFiles: []string{
|
|
|
|
"webhook.yml",
|
|
|
|
"hook_task.yml",
|
|
|
|
},
|
|
|
|
})
|
2021-11-09 22:13:16 -07:00
|
|
|
}
|