Logo

Programming-Idioms

History of Idiom 123 > diff from v10 to v11

Edit summary for version 11 by pokoika:
New Ruby implementation by user [pokoika]

Version 10

2019-09-26, 18:09:58

Version 11

2019-09-26, 22:06:03

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Code
raise unless isConsistent
Comments bubble
There's no assert method in Ruby standard library