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:
authorLiamDevine <none@none>2010-06-12 01:07:07 +0400
committerLiamDevine <none@none>2010-06-12 01:07:07 +0400
commitc1cf499b2ac65ec880e5f92dfb82178fb870e7b2 (patch)
treed1bd232026064103863ed581275a3970a8fa137d /tests/testfx.lua
parentfd6eff203aefae0a4a5f6a041ce3cdaf4f21f6c3 (diff)
vcxproj support getting there
Diffstat (limited to 'tests/testfx.lua')
-rw-r--r--tests/testfx.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testfx.lua b/tests/testfx.lua
index ff58c3a..4696878 100644
--- a/tests/testfx.lua
+++ b/tests/testfx.lua
@@ -21,6 +21,12 @@
end
end
+ function test.string_does_not_contain(buffer, expected)
+ if string.find(buffer,expected) then
+ test.fail("\n==Fail==: Did not expected to find :\n%s\nyet it was found in buffer:\n%s\n", expected,buffer)
+ end
+ end
+
function test.capture(expected)
local actual = io.endcapture()