You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
317 B

7 years ago
  1. var optimist = require('../');
  2. var test = require('tap').test;
  3. test('parse with modifier functions' , function (t) {
  4. t.plan(1);
  5. var argv = optimist().boolean('b').parse([ '-b', '123' ]);
  6. t.deepEqual(fix(argv), { b: true, _: ['123'] });
  7. });
  8. function fix (obj) {
  9. delete obj.$0;
  10. return obj;
  11. }