mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
12 lines
178 B
Go
12 lines
178 B
Go
package repository
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMockRepo(t *testing.T) {
|
|
creator := func(t TestingT, bare bool) TestedRepo { return NewMockRepo() }
|
|
|
|
RepoTest(t, creator)
|
|
}
|