diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2018-12-21 19:02:52 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-21 13:02:52 -0500 |
| commit | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (patch) | |
| tree | c1326825cf0fde6d58f255ee991012a158bcddf2 /flags/tests/short.ts | |
| parent | a31e44d1c8a5843882b3d974827e857070fd17c1 (diff) | |
Remove default export from flags module (denoland/deno_std#38)
Original: https://github.com/denoland/deno_std/commit/e674f7575a7a5a845d696416da2abae62525bc3e
Diffstat (limited to 'flags/tests/short.ts')
| -rwxr-xr-x | flags/tests/short.ts | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/flags/tests/short.ts b/flags/tests/short.ts index 2253ac13d..7e1203c5f 100755 --- a/flags/tests/short.ts +++ b/flags/tests/short.ts @@ -1,44 +1,44 @@ import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; -import parseArgs from "../index.ts"; +import { parse } from "../index.ts"; test(function numbericShortArgs() { - assertEqual(parseArgs([ '-n123' ]), { n: 123, _: [] }); + assertEqual(parse([ '-n123' ]), { n: 123, _: [] }); assertEqual( - parseArgs([ '-123', '456' ]), + parse([ '-123', '456' ]), { 1: true, 2: true, 3: 456, _: [] } ); }); test(function short() { assertEqual( - parseArgs([ '-b' ]), + parse([ '-b' ]), { b : true, _ : [] }, ); assertEqual( - parseArgs([ 'foo', 'bar', 'baz' ]), + parse([ 'foo', 'bar', 'baz' ]), { _ : [ 'foo', 'bar', 'baz' ] }, ); assertEqual( - parseArgs([ '-cats' ]), + parse([ '-cats' ]), { c : true, a : true, t : true, s : true, _ : [] }, ); assertEqual( - parseArgs([ '-cats', 'meow' ]), + parse([ '-cats', 'meow' ]), { c : true, a : true, t : true, s : 'meow', _ : [] }, ); assertEqual( - parseArgs([ '-h', 'localhost' ]), + parse([ '-h', 'localhost' ]), { h : 'localhost', _ : [] }, ); assertEqual( - parseArgs([ '-h', 'localhost', '-p', '555' ]), + parse([ '-h', 'localhost', '-p', '555' ]), { h : 'localhost', p : 555, _ : [] }, ); }); test(function mixedShortBoolAndCapture() { assertEqual( - parseArgs([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), { f : true, p : 555, h : 'localhost', _ : [ 'script.js' ] @@ -48,7 +48,7 @@ test(function mixedShortBoolAndCapture() { test(function shortAndLong() { assertEqual( - parseArgs([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), { f : true, p : 555, h : 'localhost', _ : [ 'script.js' ] |
