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