git-bug/repository/mock_repo_test.go

12 lines
178 B
Go
Raw Normal View History

package repository
2021-01-04 01:59:25 +03:00
import (
"testing"
)
func TestMockRepo(t *testing.T) {
creator := func(t TestingT, bare bool) TestedRepo { return NewMockRepo() }
RepoTest(t, creator)
}