reiddraper / simple-check

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

string generator never produces an empty string #24

Closed Chouser closed 10 years ago

Chouser commented 10 years ago

the 'size' parameter should be starting at 0 during tests, but it's starting at 1 (a small bug), and further, the string generators always create a string of 'size', instead of randomly choosing 0..size

reiddraper commented 10 years ago

Fixed in c2fd6673fee08ee59e42a79ec0a15dda58dd0d93.

Chouser commented 10 years ago

Thanks!