mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-03-26 05:13:04 -04:00
16 lines
263 B
Go
16 lines
263 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package activitypub_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/models/unittest"
|
|
|
|
_ "forgejo.org/modules/testimport"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m)
|
|
}
|