Druid-Extension/test/tests/test_template.lua
2022-09-11 12:16:20 +03:00

18 lines
275 B
Lua

local mock_gui = require "deftest.mock.gui"
return function()
describe("Eva lang", function()
before(function()
mock_gui.mock()
end)
after(function()
mock_gui.unmock()
end)
it("Should do something right", function()
assert(2 == 1 + 1)
end)
end)
end