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:
Diffstat (limited to 'tests/test_string.lua')
-rw-r--r--tests/test_string.lua43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/test_string.lua b/tests/test_string.lua
new file mode 100644
index 0000000..3ce1f1f
--- /dev/null
+++ b/tests/test_string.lua
@@ -0,0 +1,43 @@
+--
+-- tests/test_string.lua
+-- Automated test suite for the new string functions.
+-- Copyright (c) 2008 Jason Perkins and the Premake project
+--
+
+
+ T.string = { }
+
+
+--
+-- string.endswith() tests
+--
+
+ function T.string.endswith_ReturnsTrue_OnMatch()
+ test.istrue(string.endswith("Abcdef", "def"))
+ end
+
+ function T.string.endswith_ReturnsFalse_OnMismatch()
+ test.isfalse(string.endswith("Abcedf", "efg"))
+ end
+
+ function T.string.endswith_ReturnsFalse_OnLongerNeedle()
+ test.isfalse(string.endswith("Abc", "Abcdef"))
+ end
+
+ function T.string.endswith_ReturnsFalse_OnNilHaystack()
+ test.isfalse(string.endswith(nil, "ghi"))
+ end
+
+ function T.string.endswith_ReturnsFalse_OnNilNeedle()
+ test.isfalse(string.endswith("Abc", nil))
+ end
+
+
+
+--
+-- string.explode() tests
+--
+
+ function T.string.explode_ReturnsParts_OnValidCall()
+ test.isequal({"aaa","bbb","ccc"}, string.explode("aaa/bbb/ccc", "/", true))
+ end