Skip to content

Commit

Permalink
failing -k=v short test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Aug 24, 2015
1 parent 86b321a commit 63416b8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/kv_short.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var parse = require('../');
var test = require('tape');

test('short -k=v' , function (t) {
t.plan(1);

var argv = parse([ '-b=123' ]);
t.deepEqual(argv, { b: 123, _: [] });
});

0 comments on commit 63416b8

Please sign in to comment.