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/api/test_path_kind.lua

39 lines
671 B
Lua

--
-- tests/api/test_path_kind.lua
-- Tests the path API value type.
-- Copyright (c) 2012 Jason Perkins and the Premake project
--
T.api_path_kind = {}
local suite = T.api_path_kind
local api = premake.api
--
-- Setup and teardown
--
function suite.setup()
api.register {
name = "testapi",
kind = "path",
scope = "project"
}
test.createsolution()
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