blob: 66fad7b65cd50fe7d298f69af9922cbc34a60d64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package repository
import (
"testing"
)
func TestMockRepo(t *testing.T) {
creator := func(t testing.TB, bare bool) TestedRepo { return NewMockRepo() }
RepoTest(t, creator)
}
|