1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-17 04:26:00 +00:00
Files
musix-oss/node_modules/rc/node_modules/minimist/test/parse_modified.js
MatteZ02 da84fcfed1 opus
2020-03-04 13:43:21 +02:00

10 lines
238 B
JavaScript

var parse = require('../');
var test = require('tape');
test('parse with modifier functions' , function (t) {
t.plan(1);
var argv = parse([ '-b', '123' ], { boolean: 'b' });
t.deepEqual(argv, { b: true, _: [123] });
});