2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-03-19 13:24:11 -04:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
|
|
|
import { parse } from "./mod.ts";
|
2018-12-19 13:06:31 -05:00
|
|
|
|
2020-02-11 11:24:27 -05:00
|
|
|
Deno.test(function longOpts(): void {
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(parse(["--bool"]), { bool: true, _: [] });
|
|
|
|
assertEquals(parse(["--pow", "xixxle"]), { pow: "xixxle", _: [] });
|
|
|
|
assertEquals(parse(["--pow=xixxle"]), { pow: "xixxle", _: [] });
|
|
|
|
assertEquals(parse(["--host", "localhost", "--port", "555"]), {
|
2018-12-24 10:28:01 -05:00
|
|
|
host: "localhost",
|
|
|
|
port: 555,
|
|
|
|
_: []
|
|
|
|
});
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(parse(["--host=localhost", "--port=555"]), {
|
2018-12-24 10:28:01 -05:00
|
|
|
host: "localhost",
|
|
|
|
port: 555,
|
|
|
|
_: []
|
|
|
|
});
|
2018-12-19 13:06:31 -05:00
|
|
|
});
|