aboutsummaryrefslogtreecommitdiffstats
path: root/blame_test.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-09-22 18:51:21 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-09-22 18:51:21 +0200
commit001bb130fe6186421f3ddcc556854410edd8d95e (patch)
tree4307c48320a05acf5c1e98b244feae6b3e1828ce /blame_test.go
parent4912552b913f1f575f9cc358b46bcdbe884e7279 (diff)
downloadgo-git-001bb130fe6186421f3ddcc556854410edd8d95e.tar.gz
cleanup old fixtures
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 {