mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of returning a value there in the success case, copy the positional arguments into the existing opts table.
This commit is contained in:
parent
0eef6dde1e
commit
93347db124
2 changed files with 6 additions and 3 deletions
|
@ -20,7 +20,7 @@ describe("parse", function()
|
|||
local arg = { "--foo"; "bar"; "--baz" };
|
||||
local opts, err = parse(arg);
|
||||
assert.falsy(err);
|
||||
assert.same({ foo = true }, opts);
|
||||
assert.same({ foo = true, "bar", "--baz" }, opts);
|
||||
assert.same({ "bar"; "--baz" }, arg);
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue