util.argparse: Add support for repeatable parameters

These are gathered into arrays
This commit is contained in:
Kim Alvefur 2022-01-05 04:46:27 +01:00
parent 9f0a28f1c4
commit 21740a1382
2 changed files with 16 additions and 2 deletions

View file

@ -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);