reiddraper / simple-check

QuickCheck for Clojure
http://reiddraper.github.io/simple-check/
286 stars 18 forks source link

Use numerical comparison, so we don't get 100 != 1e2 #16

Closed ztellman closed 11 years ago

ztellman commented 11 years ago

I noticed that if I used scientific notation for the number of tests, it would run forever. This is because (not= 100 1e2), but (== 100 1e2), which is extremely non-obvious, but there you go.