mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
12 lines
398 B
Go
12 lines
398 B
Go
|
package testrig
|
||
|
|
||
|
import (
|
||
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
||
|
"github.com/superseriousbusiness/gotosocial/internal/timeline"
|
||
|
)
|
||
|
|
||
|
// NewTestTimelineManager retuts a new timeline.Manager, suitable for testing, using the given db.
|
||
|
func NewTestTimelineManager(db db.DB) timeline.Manager {
|
||
|
return timeline.NewManager(db, NewTestTypeConverter(db), NewTestConfig(), NewTestLog())
|
||
|
}
|