blob: ab94c7a2839c8cc80f9711f4170c75b5c1ed4fbc [file] [log] [blame]
var subarg = require('../');
var test = require('tape');
test('recursive', function (t) {
t.plan(1);
t.deepEqual(
subarg('-a [ -b [ -c [ -d 5 ] ] ] -e 3'.split(/\s+/)),
{
_: [],
a: {
_: [],
b: {
_: [],
c: {
_: [],
d: 5
}
}
},
e: 3
}
);
});