Sha256: 46d85a96f8a35dee8dc0a12590906de9d3909c249c76f01fef156814faed33a2

Contents?: true

Size: 456 Bytes

Versions: 5

Compression:

Stored size: 456 Bytes

Contents

module ::RSpec::Core::Notifications
  class ExamplesNotification
    def fully_formatted_pending_examples(colorizer=::RSpec::Core::Formatters::ConsoleCodes)
      formatted = "\nPending: (Failures listed here are expected and do not affect your suite's status)\n".dup

      pending_notifications.each_with_index do |notification, index|
        formatted += notification.fully_formatted(index.next, colorizer)
      end

      formatted
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
opal-rspec-1.1.0.alpha3 lib-opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb
opal-rspec-1.1.0.alpha2 lib-opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb
opal-rspec-1.1.0.alpha1 lib-opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb
opal-rspec-1.0.0 lib-opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb
opal-rspec-1.0.0.alpha1 lib-opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb