diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-04-02 10:40:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 10:40:28 +0200 |
commit | 32931400e23550cc840d2c2ae7bb5a20ef1946e7 (patch) | |
tree | cd74fcb15fb27e535bcc81e0c9ee7420d2423f8e /blame_test.go | |
parent | 0c2618bc7d495322c6413b0ff62549712747cf9e (diff) | |
parent | a3cf1237f57399759c79b0b1827724d3481c8a9e (diff) | |
download | go-git-32931400e23550cc840d2c2ae7bb5a20ef1946e7.tar.gz |
Merge pull request #795 from shanedasilva/add_commit_hash_to_blame_result
Add commit hash to blame result
Diffstat (limited to 'blame_test.go')
-rw-r--r-- | blame_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/blame_test.go b/blame_test.go index 51c546a..92911b1 100644 --- a/blame_test.go +++ b/blame_test.go @@ -32,6 +32,10 @@ func (s *BlameSuite) TestBlame(c *C) { obt, err := Blame(commit, t.path) c.Assert(err, IsNil) c.Assert(obt, DeepEquals, exp) + + for i, l := range obt.Lines { + c.Assert(l.Hash.String(), Equals, t.blames[i]) + } } } @@ -54,6 +58,7 @@ func (s *BlameSuite) mockBlame(c *C, t blameTest, r *Repository) (blame *BlameRe Author: commit.Author.Email, Text: lines[i], Date: commit.Author.When, + Hash: commit.Hash, } blamedLines = append(blamedLines, l) } |