premake/tests/api/test_path_kind.lua

39 lines
675 B
Lua
Raw Normal View History

--
-- tests/api/test_path_kind.lua
-- Tests the path API value type.
-- Copyright (c) 2012 Jason Perkins and the Premake project
--
2017-04-25 05:44:13 +00:00
local p = premake
local suite = test.declare("api_path_kind")
2017-04-25 05:44:13 +00:00
local api = p.api
--
-- Setup and teardown
--
function suite.setup()
api.register {
2015-08-28 20:16:14 +00:00
name = "testapi",
kind = "path",
scope = "project"
}
2015-08-28 20:16:14 +00:00
test.createWorkspace()
end
function suite.teardown()
testapi = nil
end
--
-- Values should be converted to absolute paths, relative to
-- the currently running script.
--
function suite.convertsToAbsolute()
testapi "self/local.h"
test.isequal(os.getcwd() .. "/self/local.h", api.scope.project.testapi)
end