Merge 0.12->trunk

This commit is contained in:
Matthew Wild 2022-04-25 16:35:10 +01:00
commit 07ee0f4470
2 changed files with 6 additions and 3 deletions

View file

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