All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.minimist.test.kv_short.js Maven / Gradle / Ivy

The newest version!
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', _: [] });
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy