Method: RSpec::Core::Notifications::SummaryNotification#pending_count

Defined in:
lib/rspec/core/notifications.rb

#pending_countFixnum

Returns the number of pending examples.

Returns:

  • (Fixnum)

    the number of pending examples

[View source]

318
319
320
# File 'lib/rspec/core/notifications.rb', line 318

def pending_count
  @pending_count ||= pending_examples.size
end