aboutsummaryrefslogtreecommitdiffstats
path: root/repository/mock_repo_test.go
blob: 12851a80d21d8f271bec336bb809197934a20514 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package repository

import (
	"testing"
)

func TestMockRepo(t *testing.T) {
	creator := func(bare bool) TestedRepo { return NewMockRepo() }
	cleaner := func(repos ...Repo) {}

	RepoTest(t, creator, cleaner)
}