mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Fix new() library function
This commit is contained in:
parent
8b013e9471
commit
a1f053229c
2 changed files with 10 additions and 1 deletions
|
@ -1,6 +1,13 @@
|
|||
local array = require "util.array";
|
||||
describe("util.array", function ()
|
||||
describe("creation", function ()
|
||||
describe("new", function ()
|
||||
it("works", function ()
|
||||
local a = array.new({"a", "b", "c"});
|
||||
assert.same({"a", "b", "c"}, a);
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("from table", function ()
|
||||
it("works", function ()
|
||||
local a = array({"a", "b", "c"});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue