git-bug/repository/mock_repo_test.go
2022-06-21 06:48:28 -04:00

12 lines
180 B
Go

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