mirror of
https://github.com/kikito/inspect.lua.git
synced 2024-12-15 14:34:21 +00:00
10 lines
193 B
Lua
10 lines
193 B
Lua
local inspect = require 'inspect'
|
|
|
|
context( 'inspect', function()
|
|
|
|
test('Should work with simple array-like tables', function()
|
|
assert_equal(inspect({1,2,3}), "{1, 2, 3}" )
|
|
end)
|
|
|
|
end)
|