diff options
author | Arne Döring <arne.doering@gmx.net> | 2018-12-03 19:12:59 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:21 +0100 |
commit | 2a4c09ff8887350ec3fa283fe8d562e71b68406b (patch) | |
tree | bc09dd0a9b3960b1d4c194aa13d159711bd9a423 /tests/system/tostring.nim | |
parent | fb1f5c62b5e74b1a532ddfe9d6c373fc61eff878 (diff) | |
download | Nim-2a4c09ff8887350ec3fa283fe8d562e71b68406b.tar.gz |
megatest can be executed
Diffstat (limited to 'tests/system/tostring.nim')
-rw-r--r-- | tests/system/tostring.nim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/system/tostring.nim b/tests/system/tostring.nim index 04b37f133..ea4a44417 100644 --- a/tests/system/tostring.nim +++ b/tests/system/tostring.nim @@ -1,5 +1,5 @@ discard """ - output: "" + output: "DONE: tostring.nim" """ doAssert "@[23, 45]" == $(@[23, 45]) @@ -115,3 +115,6 @@ block: var s: string s.addQuoted a2 doAssert s == "\"fo\\\"o2\"" + + +echo "DONE: tostring.nim" |