aboutsummaryrefslogblamecommitdiffstats
path: root/repository/mock_repo_test.go
blob: 66fad7b65cd50fe7d298f69af9922cbc34a60d64 (plain) (tree)
1
2
3
4
5
6
7
8
9

                  


                 

                                 
                                                                                    
 
                            
 
package repository

import (
	"testing"
)

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

	RepoTest(t, creator)
}