summaryrefslogtreecommitdiff
path: root/tests/modules/string
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/string')
-rw-r--r--tests/modules/string/test.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/modules/string/test.lua b/tests/modules/string/test.lua
new file mode 100644
index 000000000..b2e7a23c7
--- /dev/null
+++ b/tests/modules/string/test.lua
@@ -0,0 +1,4 @@
+function main()
+ assert(string.less("awd","dwa"))
+ assert(not string.less("dwa","awd"))
+end