diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2018-12-19 19:06:31 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-19 13:06:31 -0500 |
| commit | 700b4ce0d99dca02fe192c8722ab1bb7a33dc709 (patch) | |
| tree | 86d4365a732ed349199711c1814fb00dd9253677 /flags/tests/short.ts | |
| parent | 2351df72db2be5906a7441e16c883926051284b1 (diff) | |
Add flags module (denoland/deno_std#32)
Original: https://github.com/denoland/deno_std/commit/b15b0d20d722ad16ebba363c0e8e35bbbc869f20
Diffstat (limited to 'flags/tests/short.ts')
| -rwxr-xr-x | flags/tests/short.ts | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/flags/tests/short.ts b/flags/tests/short.ts new file mode 100755 index 000000000..2253ac13d --- /dev/null +++ b/flags/tests/short.ts @@ -0,0 +1,57 @@ +import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import parseArgs from "../index.ts"; + +test(function numbericShortArgs() { + assertEqual(parseArgs([ '-n123' ]), { n: 123, _: [] }); + assertEqual( + parseArgs([ '-123', '456' ]), + { 1: true, 2: true, 3: 456, _: [] } + ); +}); + +test(function short() { + assertEqual( + parseArgs([ '-b' ]), + { b : true, _ : [] }, + ); + assertEqual( + parseArgs([ 'foo', 'bar', 'baz' ]), + { _ : [ 'foo', 'bar', 'baz' ] }, + ); + assertEqual( + parseArgs([ '-cats' ]), + { c : true, a : true, t : true, s : true, _ : [] }, + ); + assertEqual( + parseArgs([ '-cats', 'meow' ]), + { c : true, a : true, t : true, s : 'meow', _ : [] }, + ); + assertEqual( + parseArgs([ '-h', 'localhost' ]), + { h : 'localhost', _ : [] }, + ); + assertEqual( + parseArgs([ '-h', 'localhost', '-p', '555' ]), + { h : 'localhost', p : 555, _ : [] }, + ); +}); + +test(function mixedShortBoolAndCapture() { + assertEqual( + parseArgs([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + { + f : true, p : 555, h : 'localhost', + _ : [ 'script.js' ] + } + ); +}); + +test(function shortAndLong() { + assertEqual( + parseArgs([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + { + f : true, p : 555, h : 'localhost', + _ : [ 'script.js' ] + } + ); +}); |
