git_test.go

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