class RSpec::Core::Example

def inspect_output

Returns a description of the example that always includes the location.
def inspect_output
  inspect_output = "\"#{description}\""
  unless metadata[:description].to_s.empty?
    inspect_output << " (#{location})"
  end
  inspect_output
end