Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* document nim-lang#15618

* Update lib/pure/unittest.nim

* Update lib/pure/unittest.nim

Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>

* Update lib/pure/unittest.nim

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
  • Loading branch information
3 people authored and irdassis committed Feb 12, 2021
1 parent 500d5de commit 5ea24bf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/pure/unittest.nim
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,15 @@
## discard v[4]
##
## echo "suite teardown: run once after the tests"
##
## Limitations/Bugs
## ================
## Since `check` will rewrite some programs for
## supporting checkpoints (namely assigns expressions to variables).
## Some type conversions are not supported.
## For example `check 4.0 == 2 + 2` won't work. But `doAssert 4.0 == 2 + 2` works.
## Make sure both sides of the operator (such as `==`, `>=` and so on) have the same type.
##

import std/private/since
import std/exitprocs
Expand Down

0 comments on commit 5ea24bf

Please sign in to comment.