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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2009-11-25 22:40:23 +0300
committerstarkos <none@none>2009-11-25 22:40:23 +0300
commite23a53f2426d26ff58d82e77d6cf42edaed2e34f (patch)
tree54a51ec2d3626e7475a873911680bbe2d6462dca /tests/base
parentd45f3d6805a368087f0c368b615b8446c9ed70c0 (diff)
Fixed bug in Xcode group pathing; started work on project dependencies
Diffstat (limited to 'tests/base')
-rw-r--r--tests/base/test_path.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/base/test_path.lua b/tests/base/test_path.lua
index 3338741..75edc7f 100644
--- a/tests/base/test_path.lua
+++ b/tests/base/test_path.lua
@@ -137,6 +137,10 @@
function T.path.isabsolute_ReturnsFalse_OnRelativePath()
test.isfalse(path.isabsolute("a/b/c"))
end
+
+ function T.path.isabsolute_ReturnsTrue_OnDollarSign()
+ test.istrue(path.isabsolute("$(SDK_HOME)/include"))
+ end
--