You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the record, this works with matcho assertions (#2) in comments which begin =>> instead of =>, so:
; You can write this
(let [chars (take26 (iterate #(char (inc (int %))) \a))]
(zipmap (range) chars))
;=>> {0 \a, 1 \b, ...}; But not this
*1 ;=> {0 \a ...} ; <- this will throw an exception
=> remains strictly and simply a literal assertion of equality.
When I'm writing rich comments in general, not necessarily for test generation purposes, I often use elipses to truncate the output I show, like:
It'd be cool to support something like that, so that the tests aren't all or nothing.
The text was updated successfully, but these errors were encountered: