Flowdock
example_finished(example, error=nil) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/reporter.rb, line 27
      def example_finished(example, error=nil)
        @example_count += 1
        
        if error.nil?
          example_passed(example)
        elsif Spec::Example::ExamplePendingError === error
          example_pending(example, example.location, error.message)
        else
          example_failed(example, error)
        end
      end
Register or log in to add new notes.