10 lines
191 B
Lua
10 lines
191 B
Lua
|
|
describe('Logging', function()
|
||
|
|
it('prints debug statements', function()
|
||
|
|
DebugTest('42')
|
||
|
|
end)
|
||
|
|
|
||
|
|
it('prints info statements', function()
|
||
|
|
InfoTest('42')
|
||
|
|
end)
|
||
|
|
end)
|