1
0
Fork 0
forked from forgejo/forgejo

activitypub: signing http client

Signed-off-by: Loïc Dachary <loic@dachary.org>
This commit is contained in:
Loïc Dachary 2021-11-09 08:36:23 +01:00 committed by Anthony Wang
parent e8907c3c9e
commit 15c1f6218c
No known key found for this signature in database
GPG key ID: BC96B00AEC5F2D76
4 changed files with 192 additions and 2 deletions

View file

@ -0,0 +1,16 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
// 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) {
unittest.MainTest(m, filepath.Join("..", ".."))
}