module Spec module Example # Lightweight representation of an example. This is the object # that is passed to example-related methods in # Spec::Runner::Formatter::BaseFormatter class ExampleProxy def initialize(description=nil, options={}, location=nil) # :nodoc: @description, @options, @location = description, options, location end # This is the docstring passed to the it() method or any # of its aliases attr_reader :description # Internal use only - used to store options to pass to example # when it is initialized attr_reader :options # :nodoc: # The file and line number at which the represented example # was declared. This is extracted from caller, and is therefore # formatted as an individual line in a backtrace. attr_reader :location # Deprecated - use location() def backtrace location end # Convenience method for example group - updates the value of # description and returns self. def update(description) # :nodoc: @description = description self end def ==(other) # :nodoc: (other.description == description) & (other.backtrace == backtrace) end end end end