2018-12-19 13:06:31 -05:00
|
|
|
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
|
2018-12-21 13:02:52 -05:00
|
|
|
import { parse } from "../index.ts";
|
2018-12-19 13:06:31 -05:00
|
|
|
|
|
|
|
// flag boolean true (default all --args to boolean)
|
|
|
|
test(function flagBooleanTrue() {
|
2018-12-24 10:28:01 -05:00
|
|
|
const argv = parse(["moo", "--honk", "cow"], {
|
|
|
|
boolean: true
|
|
|
|
});
|
|
|
|
|
|
|
|
assertEqual(argv, {
|
|
|
|
honk: true,
|
|
|
|
_: ["moo", "cow"]
|
|
|
|
});
|
|
|
|
|
|
|
|
assertEqual(typeof argv.honk, "boolean");
|
2018-12-19 13:06:31 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// flag boolean true only affects double hyphen arguments without equals signs
|
|
|
|
test(function flagBooleanTrueOnlyAffectsDoubleDash() {
|
2018-12-24 10:28:01 -05:00
|
|
|
var argv = parse(["moo", "--honk", "cow", "-p", "55", "--tacos=good"], {
|
|
|
|
boolean: true
|
|
|
|
});
|
|
|
|
|
|
|
|
assertEqual(argv, {
|
|
|
|
honk: true,
|
|
|
|
tacos: "good",
|
|
|
|
p: 55,
|
|
|
|
_: ["moo", "cow"]
|
|
|
|
});
|
|
|
|
|
|
|
|
assertEqual(typeof argv.honk, "boolean");
|
2018-12-19 13:06:31 -05:00
|
|
|
});
|