mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dataforms: Add failing test for #1177
This commit is contained in:
parent
46d630b02d
commit
00a2891787
1 changed files with 27 additions and 0 deletions
|
@ -320,5 +320,32 @@ describe("util.dataforms", function ()
|
|||
assert.truthy(some_form:data(xform));
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("issue1177", function ()
|
||||
local form_with_stuff;
|
||||
setup(function ()
|
||||
form_with_stuff = dataforms.new({
|
||||
{
|
||||
type = "list-single";
|
||||
name = "abtest";
|
||||
label = "A or B?";
|
||||
options = {
|
||||
{ label = "A", value = "a", default = true },
|
||||
{ label = "B", value = "b" },
|
||||
};
|
||||
},
|
||||
});
|
||||
end);
|
||||
|
||||
it("includes options when value is included", function ()
|
||||
local f = form_with_stuff:form({ abtest = "a" });
|
||||
assert.truthy(f:find("field/option"));
|
||||
end);
|
||||
|
||||
it("includes options when value is excluded", function ()
|
||||
local f = form_with_stuff:form({});
|
||||
assert.truthy(f:find("field/option"));
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue