premake/tests/base/test_binmodules.lua
2017-08-07 09:26:07 -07:00

19 lines
341 B
Lua

--
-- tests/base/test_binmodules.lua
-- Verify handling of binary modules.
-- Copyright (c) 2017 Tom van Dijck and the Premake project
--
local suite = test.declare("premake_binmodules")
local p = premake
function suite.setup()
require("example")
end
function suite.testExample()
test.istrue(example.test("hello world"));
end