mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8feb30e325
This commit removes overload of Deno.test() that accepted named function.
32 lines
845 B
TypeScript
Executable file
32 lines
845 B
TypeScript
Executable file
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { assertEquals } from "../testing/asserts.ts";
|
|
import { parse } from "./mod.ts";
|
|
|
|
Deno.test("booleanDefaultTrue", function (): void {
|
|
const argv = parse([], {
|
|
boolean: "sometrue",
|
|
default: { sometrue: true },
|
|
});
|
|
assertEquals(argv.sometrue, true);
|
|
});
|
|
|
|
Deno.test("booleanDefaultFalse", function (): void {
|
|
const argv = parse([], {
|
|
boolean: "somefalse",
|
|
default: { somefalse: false },
|
|
});
|
|
assertEquals(argv.somefalse, false);
|
|
});
|
|
|
|
Deno.test("booleanDefaultNull", function (): void {
|
|
const argv = parse([], {
|
|
boolean: "maybe",
|
|
default: { maybe: null },
|
|
});
|
|
assertEquals(argv.maybe, null);
|
|
const argv2 = parse(["--maybe"], {
|
|
boolean: "maybe",
|
|
default: { maybe: null },
|
|
});
|
|
assertEquals(argv2.maybe, true);
|
|
});
|