2022-03-19 14:55:58 +01:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2021-11-09 08:36:23 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package activitypub
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-05-10 02:10:45 +02:00
|
|
|
testOps := unittest.TestOptions{GiteaRootPath: filepath.Join("..", "..")}
|
|
|
|
unittest.MainTest(m, &testOps)
|
2021-11-09 08:36:23 +01:00
|
|
|
}
|