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