diff --git a/test/repo.go b/test/repo.go index ee4adc4..97bc0ca 100644 --- a/test/repo.go +++ b/test/repo.go @@ -39,6 +39,10 @@ func (r *RepoMock) Path() string { return r.path } +func (r *RepoMock) AbsPath() string { + return r.path +} + func (r *RepoMock) GitDir() string { return r.Path() + "/.git" }