blob: 1b36fd4cee0a0df2299cab670ce732a2bd86c9f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Package repository contains helper methods for working with the Git repo.
package repository
import (
"testing"
)
func TestGitRepo(t *testing.T) {
RepoTest(t, CreateTestRepo, CleanupTestRepos)
}
|