aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-12-23 15:01:37 +0100
committerKim Alvefur <zash@zash.se>2018-12-23 15:01:37 +0100
commit0a11d53f81d33de026024e624f062cf73f6fd006 (patch)
tree038f639988a60aead0d9d40c0820aa11239507eb /spec
parentf4b4239e3763ac2f27f1f7d0244b5b2c7d666821 (diff)
downloadprosody-0a11d53f81d33de026024e624f062cf73f6fd006.tar.gz
prosody-0a11d53f81d33de026024e624f062cf73f6fd006.zip
util.table: Add test for create()
Diffstat (limited to 'spec')
-rw-r--r--spec/util_table_spec.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/util_table_spec.lua b/spec/util_table_spec.lua
index 97266fe2..76f54b69 100644
--- a/spec/util_table_spec.lua
+++ b/spec/util_table_spec.lua
@@ -1,5 +1,12 @@
local u_table = require "util.table";
describe("util.table", function ()
+ describe("create()", function ()
+ it("works", function ()
+ -- Can't test the allocated sizes of the table, so what you gonna do?
+ assert.is.table(u_table.create(1,1));
+ end);
+ end);
+
describe("pack()", function ()
it("works", function ()
assert.same({ "lorem", "ipsum", "dolor", "sit", "amet", n = 5 }, u_table.pack("lorem", "ipsum", "dolor", "sit", "amet"));