blob: b56b94f26be5938e4e0740be1aeb5f8a18249e8c (
plain) (
tree)
|
|
package repository
import "testing"
func TestMockRepo(t *testing.T) {
creator := func(bare bool) TestedRepo { return NewMockRepoForTest() }
cleaner := func(repos ...Repo) {}
RepoTest(t, creator, cleaner)
}
|