util.dataforms: Include a fixed field in test

This commit is contained in:
Kim Alvefur 2018-07-15 22:35:42 +02:00
parent 5db776ea9e
commit 0913989a69

View file

@ -14,6 +14,10 @@ describe("util.dataforms", function ()
name = "FORM_TYPE",
value = "xmpp:prosody.im/spec/util.dataforms#1",
};
{
type = "fixed";
value = "Fixed field";
},
{
type = "boolean",
label = "boolean-label",
@ -310,5 +314,11 @@ describe("util.dataforms", function ()
assert.equal("xmpp:prosody.im/spec/util.dataforms#1", dataforms.get_type(xform));
end);
end);
describe(":data", function ()
it("works", function ()
assert.truthy(some_form:data(xform));
end);
end);
end);