2019-12-06 19:44:10 -07:00
|
|
|
// Copyright 2019 The Gitea Authors.
|
|
|
|
// All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-06 19:44:10 -07:00
|
|
|
|
|
|
|
package pull
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2023-09-07 22:51:15 -06:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
2019-12-06 19:44:10 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 19:38:53 -06:00
|
|
|
unittest.MainTest(m)
|
2019-12-06 19:44:10 -07:00
|
|
|
}
|