mirror of
https://github.com/TangentFoxy/inspect.lua.git
synced 2025-07-28 11:02:18 +00:00
tables working quite well, I am happy :)
This commit is contained in:
@@ -46,7 +46,6 @@ context( 'inspect', function()
|
||||
|
||||
context('tables', function()
|
||||
|
||||
|
||||
test('Should work with simple array-like tables', function()
|
||||
assert_equal(inspect({1,2,3}), "{1, 2, 3}" )
|
||||
end)
|
||||
@@ -60,14 +59,22 @@ context( 'inspect', function()
|
||||
end)
|
||||
|
||||
test('Should work with nested dictionary tables', function()
|
||||
nestedDict = [[{
|
||||
assert_equal(inspect( {d=3, b={c=2}, a=1} ), [[{
|
||||
a = 1,
|
||||
b = {
|
||||
c = 2
|
||||
},
|
||||
d = 3
|
||||
}]]
|
||||
assert_equal(inspect( {a=1, b={c=2}, d=3} ), nestedDict)
|
||||
}]])
|
||||
end)
|
||||
|
||||
test('Should work with hybrid tables', function()
|
||||
assert_equal(inspect({ 'a', {b = 1}, 2, c = 3, ['ahoy you'] = 4 }), [[{"a", {
|
||||
b = 1
|
||||
}, 2,
|
||||
["ahoy you"] = 4,
|
||||
c = 3
|
||||
}]])
|
||||
end)
|
||||
|
||||
end)
|
||||
|
Reference in New Issue
Block a user