added test but not passing for weird reason

This commit is contained in:
Peter Cottle 2013-10-29 10:08:40 -07:00
parent 30b1f58e77
commit f35aef89ae

View file

@ -156,5 +156,12 @@ describe('Git', function() {
);
});
it('makes a tag', function() {
expectTreeAsync(
'git tag v1',
'{"branches":{"master":{"target":"C1","id":"master","remoteTrackingBranchID":null}},"commits":{"C0":{"parents":[],"id":"C0","rootCommit":true},"C1":{"parents":["C0"],"id":"C1"}},"tags":{"v1":{"target":"C1","id":"v1","type":"tag"}},"HEAD":{"target":"master","id":"HEAD"}}'
);
});
});