1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/flags/tests/default_bool.ts
2018-12-21 13:02:52 -05:00

32 lines
798 B
TypeScript
Executable file

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);
})