aboutsummaryrefslogtreecommitdiffstats
path: root/blame_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'blame_test.go')
-rw-r--r--blame_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/blame_test.go b/blame_test.go
index 9cf8992..2d9161c 100644
--- a/blame_test.go
+++ b/blame_test.go
@@ -2,6 +2,7 @@ package git
import (
"gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/fixtures"
. "gopkg.in/check.v1"
)
@@ -51,6 +52,11 @@ func (s *BlameSuite) mockBlame(t blameTest, c *C) (blame *Blame) {
}
}
+func (s *BlameSuite) SetUpSuite(c *C) {
+ s.BaseSuite.SetUpSuite(c)
+ s.buildRepositories(c, fixtures.ByTag("packfile"))
+}
+
// run a blame on all the suite's tests
func (s *BlameSuite) TestBlame(c *C) {
for _, t := range blameTests {