mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.dataforms: Include a fixed field in test
This commit is contained in:
parent
5db776ea9e
commit
0913989a69
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue