mirror of
https://github.com/denoland/deno.git
synced 2025-01-23 23:49:46 -05:00
e36edfdb3f
Original: e1d5c00279
24 lines
701 B
TypeScript
Executable file
24 lines
701 B
TypeScript
Executable file
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { test } from "../../testing/mod.ts";
|
|
import { assertEq } from "../../testing/asserts.ts";
|
|
import { parse } from "../mod.ts";
|
|
|
|
test(function dottedAlias() {
|
|
const argv = parse(["--a.b", "22"], {
|
|
default: { "a.b": 11 },
|
|
alias: { "a.b": "aa.bb" }
|
|
});
|
|
assertEq(argv.a.b, 22);
|
|
assertEq(argv.aa.bb, 22);
|
|
});
|
|
|
|
test(function dottedDefault() {
|
|
const argv = parse("", { default: { "a.b": 11 }, alias: { "a.b": "aa.bb" } });
|
|
assertEq(argv.a.b, 11);
|
|
assertEq(argv.aa.bb, 11);
|
|
});
|
|
|
|
test(function dottedDefaultWithNoAlias() {
|
|
const argv = parse("", { default: { "a.b": 11 } });
|
|
assertEq(argv.a.b, 11);
|
|
});
|