2022-03-19 07:55:58 -06:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2021-11-09 00:36:23 -07: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-09 18:10:45 -06:00
|
|
|
testOps := unittest.TestOptions{GiteaRootPath: filepath.Join("..", "..")}
|
|
|
|
unittest.MainTest(m, &testOps)
|
2021-11-09 00:36:23 -07:00
|
|
|
}
|