blob: 545f722bd83eb05045448c57267e213dee38549f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import { parse } from "../index.ts";
test(function short() {
const argv = parse([ '-b=123' ]);
assertEqual(argv, { b: 123, _: [] });
});
test(function multiShort() {
const argv = parse([ '-a=whatever', '-b=robots' ]);
assertEqual(argv, { a: 'whatever', b: 'robots', _: [] });
});
|