# 'cheat assertions' for the rest
assert_block(message="assert_block failed.") {|| ...}
The assertion upon which all other assertions are based. Passes if the block
yields true.
Example:
assert_block "Couldn't do the thing" do
do_the_thing
endcheat sheets.
$ cheat assert_block