class Spec::Matchers::ThrowSymbol

def failure_message_for_should_not

def failure_message_for_should_not
  if @expected_symbol
    "expected #{expected} not to be thrown"
  else
    "expected no Symbol, got :#{@caught_symbol}"
  end
end