summaryrefslogtreecommitdiff
path: root/flags/tests/default_bool.ts
diff options
context:
space:
mode:
Diffstat (limited to 'flags/tests/default_bool.ts')
-rwxr-xr-xflags/tests/default_bool.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/flags/tests/default_bool.ts b/flags/tests/default_bool.ts
index 92684ad7b..954ab2838 100755
--- a/flags/tests/default_bool.ts
+++ b/flags/tests/default_bool.ts
@@ -1,8 +1,8 @@
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
-import parseArgs from "../index.ts";
+import { parse } from "../index.ts";
test(function booleanDefaultTrue() {
- const argv = parseArgs([], {
+ const argv = parse([], {
boolean: 'sometrue',
default: { sometrue: true }
});
@@ -10,7 +10,7 @@ test(function booleanDefaultTrue() {
});
test(function booleanDefaultFalse() {
- const argv = parseArgs([], {
+ const argv = parse([], {
boolean: 'somefalse',
default: { somefalse: false }
});
@@ -18,12 +18,12 @@ test(function booleanDefaultFalse() {
});
test(function booleanDefaultNull() {
- const argv = parseArgs([], {
+ const argv = parse([], {
boolean: 'maybe',
default: { maybe: null }
});
assertEqual(argv.maybe, null);
- const argv2 = parseArgs(['--maybe'], {
+ const argv2 = parse(['--maybe'], {
boolean: 'maybe',
default: { maybe: null }
});