diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-23 15:01:37 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-23 15:01:37 +0100 |
commit | 9ff2b47bcc4a5c1c026ecdba8fc3b6c818af183e (patch) | |
tree | 038f639988a60aead0d9d40c0820aa11239507eb /spec/util_table_spec.lua | |
parent | b90dce4c204a7fd58ec00361cd75546ea32d585b (diff) | |
download | prosody-9ff2b47bcc4a5c1c026ecdba8fc3b6c818af183e.tar.gz prosody-9ff2b47bcc4a5c1c026ecdba8fc3b6c818af183e.zip |
util.table: Add test for create()
Diffstat (limited to 'spec/util_table_spec.lua')
-rw-r--r-- | spec/util_table_spec.lua | 7 |
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")); |