This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/tests/base/test_binmodules.lua

20 lines
374 B
Lua
Raw Permalink Normal View History

2017-06-25 15:57:53 +00:00
--
-- 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()
local result = example.test("world")
test.isequal("hello world", result)
2017-06-25 15:57:53 +00:00
end