blob: f43e7ea6c537e6545ff03681181b00f9dcd337c7 (
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 TestingT, bare bool) TestedRepo { return NewMockRepo() }
RepoTest(t, creator)
}
|