summaryrefslogtreecommitdiff
path: root/flags/tests/dotted.ts
blob: c2179a3a893d9a3bbd75ed21b2ca1f5bf1011eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test } from "../../testing/mod.ts";
import { assertEquals } 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" }
  });
  assertEquals(argv.a.b, 22);
  assertEquals(argv.aa.bb, 22);
});

test(function dottedDefault() {
  const argv = parse("", { default: { "a.b": 11 }, alias: { "a.b": "aa.bb" } });
  assertEquals(argv.a.b, 11);
  assertEquals(argv.aa.bb, 11);
});

test(function dottedDefaultWithNoAlias() {
  const argv = parse("", { default: { "a.b": 11 } });
  assertEquals(argv.a.b, 11);
});