# HG changeset patch # User Kim Alvefur # Date 1545573697 -3600 # Node ID 9a35ae9353908649be315fcdffc6dfcceb8c5693 # Parent a726668b3c484a4cac7a4ab6bb4d0b83f4021a03 util.table: Add test for create() diff -r a726668b3c48 -r 9a35ae935390 spec/util_table_spec.lua --- a/spec/util_table_spec.lua Sun Dec 23 14:52:52 2018 +0100 +++ b/spec/util_table_spec.lua Sun Dec 23 15:01:37 2018 +0100 @@ -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"));