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

20 lines
321 B
Go
Raw Normal View History

2021-11-10 13:13:16 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-11-10 13:13:16 +08:00
package webhook
import (
"testing"
"code.gitea.io/gitea/models/unittest"
2021-11-10 13:13:16 +08:00
)
func TestMain(m *testing.M) {
2022-04-14 21:58:21 +08:00
unittest.MainTest(m, &unittest.TestOptions{
FixtureFiles: []string{
"webhook.yml",
"hook_task.yml",
},
})
2021-11-10 13:13:16 +08:00
}