summary refs log tree commit diff stats
path: root/tests/system/toString.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/toString.nim')
-rw-r--r--tests/system/toString.nim42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/system/toString.nim b/tests/system/toString.nim
deleted file mode 100644
index a2337f5dd..000000000
--- a/tests/system/toString.nim
+++ /dev/null
@@ -1,42 +0,0 @@
-discard """
-  output:'''@[23, 45]
-@[, foo, bar]
-{a, b, c}
-2.3242
-2.982
-123912.1
-123912.1823
-5.0
-1e+100
-inf
--inf
-nan
-nil
-nil'''
-"""
-
-echo($(@[23, 45]))
-echo($(@["", "foo", "bar"]))
-#echo($(["", "foo", "bar"]))
-#echo($([23, 45]))
-
-# bug #2395
-
-let alphaSet: set[char] = {'a'..'c'}
-echo alphaSet
-
-echo($(2.3242))
-echo($(2.982))
-echo($(123912.1))
-echo($(123912.1823))
-echo($(5.0))
-echo($(1e100))
-echo($(1e1000000))
-echo($(-1e1000000))
-echo($(0.0/0.0))
-
-# nil tests
-var x: seq[string]
-var y: string
-echo(x)
-echo(y)