rebuild for Issue #121 Pull #121

This commit is contained in:
Peter Cottle 2013-08-05 20:43:10 -07:00
parent 4815a6f30b
commit fc502bcdaf
6 changed files with 8 additions and 5 deletions

View file

@ -33,7 +33,7 @@ describe('commands', function() {
var c = new Command({rawStr: 'foo'});
_.each(testCases, function(tCase) {
c.setSupportedMap(tCase.options);
c.setOptionsMap(tCase.options);
c.setGeneralArgs(tCase.args);
c.mapDotToHead();
@ -45,7 +45,7 @@ describe('commands', function() {
);
expect(
j(c.getSupportedMap())
j(c.getOptionsMap())
).toBe(
j(tCase.gitOptions)
);