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