diff options
author | Nycto <James@RoundEights.com> | 2015-08-01 18:48:41 -0700 |
---|---|---|
committer | Nycto <James@RoundEights.com> | 2015-08-01 18:48:41 -0700 |
commit | eac484167c7b9d6115133bc936993ae7534cd4e9 (patch) | |
tree | ef6c905e9ba019f7c0646f1ae9126abb448abf38 /tests | |
parent | 1b4116702b411c82ccec4b558768689b2a1a0964 (diff) | |
download | Nim-eac484167c7b9d6115133bc936993ae7534cd4e9.tar.gz |
Fix multiple requires in a test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/tunittest.nim | 5 |
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() = |