2012-09-27 21:07:32 +00:00
|
|
|
--
|
|
|
|
-- tests/base/test_premake_command.lua
|
|
|
|
-- Test the initialization of the _PREMAKE_COMMAND global.
|
2014-06-26 14:43:48 +00:00
|
|
|
-- Copyright (c) 2012-2014 Jason Perkins and the Premake project
|
2012-09-27 21:07:32 +00:00
|
|
|
--
|
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
local suite = test.declare("premake_command")
|
2012-09-27 21:07:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
function suite.valueIsSet()
|
2014-06-26 14:43:48 +00:00
|
|
|
test.istrue(os.isfile(_PREMAKE_COMMAND))
|
2012-09-27 21:07:32 +00:00
|
|
|
end
|