# File test/unit/assertions.rb, line 28
      def assert_block(message="") # :yields: 
        _wrap_assertion do
          if (! yield)
            raise AssertionFailedError.new(message.to_s)
          end
        end
      end