global

def format_expectation(negate)

def format_expectation(negate)
  return 'expected: '+@expected.inspect if @operation == :== && !negate
  negate_str = negate ? 'not ' : ''
  "expected it #{negate_str}to be #{@operation} #{@expected.inspect}"
end