19 lines
341 B
Lua
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
|