summary refs log tree commit diff stats
path: root/tests/run/tsplit.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tsplit.nim')
-rwxr-xr-xtests/run/tsplit.nim20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/run/tsplit.nim b/tests/run/tsplit.nim
deleted file mode 100755
index 25bad33e2..000000000
--- a/tests/run/tsplit.nim
+++ /dev/null
@@ -1,20 +0,0 @@
-discard """
-  file: "tsplit.nim"
-  output: "true"
-"""
-import strutils
-
-var s = ""
-for w in split("|abc|xy|z", {'|'}):
-  s.add("#")
-  s.add(w)
-
-if s == "#abc#xy#z":
-  echo "true"
-else:
-  echo "false"
-  
-#OUT true
-
-
-