forked from mirrors/0ad
b856281197
Directly taken from https://premake.github.io/. Refs #3729. This was SVN commit r20366.
13 lines
296 B
Lua
13 lines
296 B
Lua
--
|
|
-- tests/base/test_premake_command.lua
|
|
-- Test the initialization of the _PREMAKE_COMMAND global.
|
|
-- Copyright (c) 2012-2014 Jason Perkins and the Premake project
|
|
--
|
|
|
|
local suite = test.declare("premake_command")
|
|
|
|
|
|
function suite.valueIsSet()
|
|
test.istrue(os.isfile(_PREMAKE_COMMAND))
|
|
end
|