2019-12-07 08:14:10 +05:30
|
|
|
// Copyright 2019 The Gitea Authors.
|
|
|
|
// All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-07 08:14:10 +05:30
|
|
|
|
|
|
|
package pull
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2023-09-08 10:21:15 +05:30
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
2019-12-07 08:14:10 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-28 07:08:53 +05:30
|
|
|
unittest.MainTest(m)
|
2019-12-07 08:14:10 +05:30
|
|
|
}
|