diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-23 14:52:52 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-23 14:52:52 +0100 |
commit | f4b4239e3763ac2f27f1f7d0244b5b2c7d666821 (patch) | |
tree | 7a0d6d517da4ad0aac93e558d0030ac3fe0bcb83 /spec/util_table_spec.lua | |
parent | d39cf4f42e2ec7afff198437a7ccb82f8b7664ab (diff) | |
download | prosody-f4b4239e3763ac2f27f1f7d0244b5b2c7d666821.tar.gz prosody-f4b4239e3763ac2f27f1f7d0244b5b2c7d666821.zip |
util.table: Add test for pack()
Diffstat (limited to 'spec/util_table_spec.lua')
-rw-r--r-- | spec/util_table_spec.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/util_table_spec.lua b/spec/util_table_spec.lua new file mode 100644 index 00000000..97266fe2 --- /dev/null +++ b/spec/util_table_spec.lua @@ -0,0 +1,10 @@ +local u_table = require "util.table"; +describe("util.table", function () + describe("pack()", function () + it("works", function () + assert.same({ "lorem", "ipsum", "dolor", "sit", "amet", n = 5 }, u_table.pack("lorem", "ipsum", "dolor", "sit", "amet")); + end); + end); +end); + + |