Mirror of a distributed, offline-first bug tracker embedded in git
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}