remove redundant describe block

This commit is contained in:
kikito 2014-09-19 22:56:57 +02:00
parent f153849088
commit e4a9c872b4

View File

@ -59,11 +59,9 @@ describe( 'inspect', function()
end) end)
if is_luajit then if is_luajit then
describe('luajit cdata', function()
it('works with luajit cdata', function() it('works with luajit cdata', function()
assert.equals(inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }), '{ <cdata 1>, <cdata 2>, <cdata 3> }') assert.equals(inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }), '{ <cdata 1>, <cdata 2>, <cdata 3> }')
end) end)
end)
end end
describe('tables', function() describe('tables', function()