mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
19 lines
345 B
Go
19 lines
345 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|||
// SPDX-License-Identifier: MIT
|
|||
|
|||
package activitypub
|
|||
|
|||
import (
|
|||
"testing"
|
|||
|
|||
"code.gitea.io/gitea/models/unittest"
|
|||
move repository deletion to service layer (#26948)
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
|
|
||
_ "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)
|
|||
}
|