Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_premake_command.lua « base « tests - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c29c5f5eda15c77a5117c2870fc42bb3fc19295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--
-- tests/base/test_premake_command.lua
-- Test the initialization of the _PREMAKE_COMMAND global.
-- Copyright (c) 2012 Jason Perkins and the Premake project
--

	T.premake_command = { }
	local suite = T.premake_command


	function suite.valueIsSet()
		local filename = iif(os.is("windows"), "premake4.exe", "premake4")
		test.isequal(path.getabsolute("../bin/debug/" .. filename), _PREMAKE_COMMAND)
	end