Flowdock
pending(message = "TODO") public

No documentation

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

Hide source
# File lib/spec/example/pending.rb, line 4
      def pending(message = "TODO")
        if block_given?
          begin
            yield
          rescue Exception
            raise Spec::Example::ExamplePendingError.new(message)
          end
          raise Spec::Example::PendingExampleFixedError.new("Expected pending '#{message}' to fail. No Error was raised.")
        else
          raise Spec::Example::ExamplePendingError.new(message)
        end
      end
Register or log in to add new notes.