summaryrefslogtreecommitdiff
path: root/flags/tests/default_bool.ts
blob: b43c52e8dcd8a6fc54e1fa8f342f4e3a3e09a1ba (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
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import { parse } from "../index.ts";

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

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

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