summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorNycto <James@RoundEights.com>2015-08-01 18:48:41 -0700
committerNycto <James@RoundEights.com>2015-08-01 18:48:41 -0700
commiteac484167c7b9d6115133bc936993ae7534cd4e9 (patch)
treeef6c905e9ba019f7c0646f1ae9126abb448abf38 /tests
parent1b4116702b411c82ccec4b558768689b2a1a0964 (diff)
downloadNim-eac484167c7b9d6115133bc936993ae7534cd4e9.tar.gz
Fix multiple requires in a test
Diffstat (limited to 'tests')
-rw-r--r--tests/stdlib/tunittest.nim5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/stdlib/tunittest.nim b/tests/stdlib/tunittest.nim
index fb9b02243..1389214ea 100644
--- a/tests/stdlib/tunittest.nim
+++ b/tests/stdlib/tunittest.nim
@@ -21,6 +21,11 @@ test "unittest typedescs":
   check(none(int) != some(1))
 
 
+test "unittest multiple requires":
+  require(true)
+  require(true)
+
+
 import math
 from strutils import parseInt
 proc defectiveRobot() =