git-bug/repository/mock_repo_test.go
Michael Muré 8d63c983c9
WIP
2021-02-14 12:19:00 +01:00

13 lines
210 B
Go

package repository
import (
"testing"
)
func TestMockRepo(t *testing.T) {
creator := func(bare bool) TestedRepo { return NewMockRepo() }
cleaner := func(repos ...Repo) {}
RepoTest(t, creator, cleaner)
}