This commit is contained in:
Joao Moreno 2019-08-07 11:35:33 +02:00
Родитель 3b49e06f12
Коммит 7a6868c1aa
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -164,3 +164,15 @@ test('boolean --boool=false', function (t) {
t.same(parsed.boool, false);
t.end();
});
test('boolean using something similar to true', function (t) {
var opts = { boolean: 'h' };
var result = parse(['-h', 'true.txt'], opts);
var expected = {
h: true,
'_': ['true.txt']
};
t.same(result, expected);
t.end();
});