20 lines
346 B
Go
20 lines
346 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|||
// SPDX-License-Identifier: MIT
|
|||
|
|||
package activitypub
|
|||
|
|||
import (
|
|||
"testing"
|
|||
|
|||
"forgejo.org/models/unittest"
|
|||
|
move repository deletion to service layer (#26948)
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
|
|
||
_ "forgejo.org/models"
|
|||
_ "forgejo.org/models/actions"
|
|||
_ "forgejo.org/models/activities"
|
|||
_ "forgejo.org/models/forgefed"
|
|||
)
|
|||
|
|||
func TestMain(m *testing.M) {
|
|||
unittest.MainTest(m)
|
|||
}
|