# File test/unit/assertions.rb, line 36
   def assert(boolean, message="")
				_wrap_assertion {
					assert_block("assert should not be called with a block!") {!block_given?}
					assert_block(message) {boolean}
				}
			end