mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
18 lines
289 B
Go
18 lines
289 B
Go
|
// Copyright 2024 The Forgejo Authors
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package actions
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/models/unittest"
|
||
|
|
||
|
_ "code.gitea.io/gitea/models/actions"
|
||
|
_ "code.gitea.io/gitea/models/activities"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
unittest.MainTest(m)
|
||
|
}
|