1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-26 11:15:34 +00:00
notes/node_modules/minimist/test/kv_short.js

17 lines
376 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
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, _: [] });
});
test('multi short -k=v' , function (t) {
t.plan(1);
var argv = parse([ '-a=whatever', '-b=robots' ]);
t.deepEqual(argv, { a: 'whatever', b: 'robots', _: [] });
});