mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.array: Fix new() library function
Backport of ffe4adbd2af9 since new was added in the 0.12 branch
This commit is contained in:
parent
683b90f871
commit
0fa9d6be37
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