# File lib/test/unit/assertions.rb, line 63 def assert(boolean, message=nil) _wrap_assertion do assert_block("assert should not be called with a block.") { !block_given? } assert_block(build_message(message, "<?> is not true.", boolean)) { boolean } end end