util.argparse: Add test for #1691

This commit is contained in:
Kim Alvefur 2021-10-12 14:54:04 +02:00
parent 0c99443297
commit 21784ddc11

View file

@ -43,4 +43,11 @@ describe("parse", function()
assert.equal("--foo", where);
end);
it("reports where the problem is", function()
local opts, err, where = parse({ "-h" });
assert.falsy(opts);
assert.equal("param-not-found", err);
assert.equal("-h", where, "returned where");
end);
end);