Flowdock
example_pending(example, ignore, message="Not Yet Implemented") private

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 154
      def example_pending(example, ignore, message="Not Yet Implemented")
        @pending_count += 1
        formatters.each do |formatter|
          if formatter_uses_deprecated_example_pending_method?(formatter)
            Spec.warn EXAMPLE_PENDING_DEPRECATION_WARNING
            formatter.example_pending(example, message, example.location)
          else
            formatter.example_pending(example, message)
          end
        end
      end
Register or log in to add new notes.