mirror of
https://github.com/TangentFoxy/inspect.lua.git
synced 2025-07-28 11:02:18 +00:00
nested tables
This commit is contained in:
@@ -2,8 +2,18 @@ local inspect = require 'inspect'
|
||||
|
||||
context( 'inspect', function()
|
||||
|
||||
test('Should work with numbers', function()
|
||||
assert_equal(inspect(1), "1")
|
||||
assert_equal(inspect(1.5), "1.5")
|
||||
assert_equal(inspect(-3.14), "-3.14")
|
||||
end)
|
||||
|
||||
test('Should work with simple array-like tables', function()
|
||||
assert_equal(inspect({1,2,3}), "{1, 2, 3}" )
|
||||
end)
|
||||
|
||||
test('Should work with nested arrays', function()
|
||||
assert_equal(inspect({1,2,3, {4,5}, 6}), "{1, 2, 3, {4, 5}, 6}" )
|
||||
end)
|
||||
|
||||
end)
|
||||
|
Reference in New Issue
Block a user