summaryrefslogtreecommitdiff
path: root/flags/tests/default_bool.ts
blob: 92684ad7be9a6fa29d0013d1e76f26cc1f8b1d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import parseArgs from "../index.ts";

test(function booleanDefaultTrue() {
    const argv = parseArgs([], {
        boolean: 'sometrue',
        default: { sometrue: true }
    });
    assertEqual(argv.sometrue, true);
});

test(function booleanDefaultFalse() {
    const argv = parseArgs([], {
        boolean: 'somefalse',
        default: { somefalse: false }
    });
    assertEqual(argv.somefalse, false);
});

test(function booleanDefaultNull() {
    const argv = parseArgs([], {
        boolean: 'maybe',
        default: { maybe: null }
    });
    assertEqual(argv.maybe, null);
    const argv2 = parseArgs(['--maybe'], {
        boolean: 'maybe',
        default: { maybe: null }
    });
    assertEqual(argv2.maybe, true);

})