summaryrefslogtreecommitdiff
path: root/testrig/federatingdb.go
blob: 6e099fac93d32fb26b4dfaad41ebb616a8683f08 (plain)
1
2
3
4
5
6
7
8
9
10
11
package testrig

import (
	"github.com/superseriousbusiness/gotosocial/internal/db"
	"github.com/superseriousbusiness/gotosocial/internal/federation/federatingdb"
)

// NewTestFederatingDB returns a federating DB with the underlying db
func NewTestFederatingDB(db db.DB) federatingdb.DB {
	return federatingdb.New(db, NewTestConfig(), NewTestLog())
}