summary refs log tree commit diff stats
path: root/tests/stdlib
diff options
context:
space:
mode:
authorFabian Keller <bluenote10@users.noreply.github.com>2017-02-25 21:18:16 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-02-25 21:18:16 +0100
commitf250c30b9d5beb587d3b62b99dc938447209836d (patch)
treec3babce2dcce2bdb73f8570bdb9b4fd4fd0c4291 /tests/stdlib
parent16aafddee598da750dba378cca5bea0126fdf992 (diff)
downloadNim-f250c30b9d5beb587d3b62b99dc938447209836d.tar.gz
Make use of `used` in unittest (#5410)
Diffstat (limited to 'tests/stdlib')
-rw-r--r--tests/stdlib/tunittest.nim15
1 files changed, 12 insertions, 3 deletions
diff --git a/tests/stdlib/tunittest.nim b/tests/stdlib/tunittest.nim
index e87cd3508..3f8601323 100644
--- a/tests/stdlib/tunittest.nim
+++ b/tests/stdlib/tunittest.nim
@@ -1,5 +1,11 @@
+discard """
+  nimout: "compile start\ncompile end"
+"""
+
 import unittest, sequtils
 
+static:
+  echo "compile start"
 
 proc doThings(spuds: var int): int =
   spuds = 24
@@ -10,9 +16,9 @@ test "#964":
   check spuds == 24
 
 
-from strutils import toUpper
+from strutils import toUpperAscii
 test "#1384":
-  check(@["hello", "world"].map(toUpper) == @["HELLO", "WORLD"])
+  check(@["hello", "world"].map(toUpperAscii) == @["HELLO", "WORLD"])
 
 
 import options
@@ -57,7 +63,7 @@ suite "suite with only teardown":
 
 suite "suite with only setup":
   setup:
-    var testVar = "from setup"
+    var testVar {.used.} = "from setup"
 
   test "unittest with only setup 1":
     check testVar == "from setup"
@@ -89,3 +95,6 @@ suite "bug #4494":
       var tags = @[1, 2, 3, 4, 5]
       check:
         allIt(0..3, tags[it] != tags[it + 1])
+
+static:
+  echo "compile end"