mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 21:21:06 +00:00
17 lines
288 B
Go
17 lines
288 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package actions_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
_ "code.gitea.io/gitea/models/actions"
|
|
_ "code.gitea.io/gitea/models/activities"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m)
|
|
}
|