mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.argparse: Add support for repeatable parameters
These are gathered into arrays
This commit is contained in:
parent
9f0a28f1c4
commit
21740a1382
2 changed files with 16 additions and 2 deletions
|
@ -50,4 +50,9 @@ describe("parse", function()
|
|||
assert.equal("-h", where, "returned where");
|
||||
end);
|
||||
|
||||
it("supports array arguments", function ()
|
||||
local opts, err = parse({ "--item"; "foo"; "--item"; "bar" }, { array_params = { item = true } });
|
||||
assert.falsy(err);
|
||||
assert.same({"foo","bar"}, opts.item);
|
||||
end)
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue