From f35aef89aebeef5876ac88c36502889a333c8005 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Tue, 29 Oct 2013 10:08:40 -0700 Subject: [PATCH] added test but not passing for weird reason --- spec/git.spec.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spec/git.spec.js b/spec/git.spec.js index cb2be018..7d36870a 100644 --- a/spec/git.spec.js +++ b/spec/git.spec.js @@ -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"}}' + ); + }); + });