Sha256: 8646e134f6c0c711a2b79697134e750df6a93008da7657e9a7674e1c3e76675e
Contents?: true
Size: 756 Bytes
Versions: 428
Compression:
Stored size: 756 Bytes
Contents
var parse = require('../'); var test = require('tape'); test('flag boolean true (default all --args to boolean)', function (t) { var argv = parse(['moo', '--honk', 'cow'], { boolean: true }); t.deepEqual(argv, { honk: true, _: ['moo', 'cow'] }); t.deepEqual(typeof argv.honk, 'boolean'); t.end(); }); test('flag boolean true only affects double hyphen arguments without equals signs', function (t) { var argv = parse(['moo', '--honk', 'cow', '-p', '55', '--tacos=good'], { boolean: true }); t.deepEqual(argv, { honk: true, tacos: 'good', p: 55, _: ['moo', 'cow'] }); t.deepEqual(typeof argv.honk, 'boolean'); t.end(); });
Version data entries
428 entries across 227 versions & 31 rubygems