Add initial Druid tests

This commit is contained in:
Insality
2022-09-11 12:16:20 +03:00
parent cb5df2b5bc
commit a6de0128bd
8 changed files with 195 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
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