mirror of
https://github.com/Insality/druid
synced 2025-09-27 18:12:21 +02:00
Add initial Druid tests
This commit is contained in:
17
test/tests/test_template.lua
Normal file
17
test/tests/test_template.lua
Normal 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
|
Reference in New Issue
Block a user