This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/tests/test_table.lua
2009-08-27 13:27:47 +00:00

47 lines
844 B
Lua

--
-- tests/test_table.lua
-- Automated test suite for the new table functions.
-- Copyright (c) 2008 Jason Perkins and the Premake project
--
T.table = { }
--
-- table.contains() tests
--
function T.table.contains_OnContained()
t = { "one", "two", "three" }
test.istrue( table.contains(t, "two") )
end
function T.table.contains_OnNotContained()
t = { "one", "two", "three" }
test.isfalse( table.contains(t, "four") )
end
--
-- table.implode() tests
--
function T.table.implode()
t = { "one", "two", "three", "four" }
test.isequal("[one], [two], [three], [four]", table.implode(t, "[", "]", ", "))
end
--
-- table.isempty() tests
--
function T.table.isempty_ReturnsTrueOnEmpty()
test.istrue(table.isempty({}))
end
function T.table.isempty_ReturnsFalseOnNotEmpty()
test.isfalse(table.isempty({ 1 }))
end