mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.argparse: Add test for #1691
This commit is contained in:
parent
0c99443297
commit
21784ddc11
1 changed files with 7 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue