diff options
author | Miran <narimiran@users.noreply.github.com> | 2018-10-19 11:43:35 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-19 11:43:35 +0200 |
commit | 9fb212cfdf2555cbebc8b8c453aa45c151534dfb (patch) | |
tree | 14844bf30c588668e3faa0a95e55628af4334d53 /tests/stdlib/tsplit.nim | |
parent | 3b1ade03507029ae96dc15190d453e2d71c9cf2b (diff) | |
download | Nim-9fb212cfdf2555cbebc8b8c453aa45c151534dfb.tar.gz |
merge stdlib tests (#9439)
Diffstat (limited to 'tests/stdlib/tsplit.nim')
-rw-r--r-- | tests/stdlib/tsplit.nim | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/stdlib/tsplit.nim b/tests/stdlib/tsplit.nim deleted file mode 100644 index 44da58aca..000000000 --- a/tests/stdlib/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 - - - |