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/test.ts | |
| parent | 2351df72db2be5906a7441e16c883926051284b1 (diff) | |
Add flags module (denoland/deno_std#32)
Original: https://github.com/denoland/deno_std/commit/b15b0d20d722ad16ebba363c0e8e35bbbc869f20
Diffstat (limited to 'flags/test.ts')
| -rw-r--r-- | flags/test.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flags/test.ts b/flags/test.ts new file mode 100644 index 000000000..fe4ec2c9f --- /dev/null +++ b/flags/test.ts @@ -0,0 +1,13 @@ +import "./tests/all_bool.ts"; +import "./tests/bool.ts"; +import "./tests/dash.ts"; +import "./tests/default_bool.ts"; +import "./tests/dotted.ts"; +import "./tests/kv_short.ts"; +import "./tests/long.ts"; +import "./tests/num.ts"; +import "./tests/parse.ts"; +import "./tests/short.ts"; +import "./tests/stop_early.ts"; +import "./tests/unknown.ts"; +import "./tests/whitespace.ts"; |
