20 lines
407 B
Lua
20 lines
407 B
Lua
local test_samurai = require("test-samurai")
|
|
local core = require("test-samurai.core")
|
|
|
|
describe("test-samurai output API", function()
|
|
it("delegates show_output to core", function()
|
|
local called = false
|
|
local orig = core.show_output
|
|
|
|
core.show_output = function()
|
|
called = true
|
|
end
|
|
|
|
test_samurai.show_output()
|
|
|
|
core.show_output = orig
|
|
|
|
assert.is_true(called)
|
|
end)
|
|
end)
|