123456789_123456789_123456789_123456789_123456789_

Class: RSpec::Core::Notifications::StartNotification

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: rspec-core/lib/rspec/core/notifications.rb

Overview

The ‘StartNotification` represents a notification sent by the reporter when the suite is started. It contains the expected amount of examples to be executed, and the load time of ::RSpec.

Instance Attribute Summary

  • #count rw

    The ‘StartNotification` represents a notification sent by the reporter when the suite is started.

  • #load_time rw

    The ‘StartNotification` represents a notification sent by the reporter when the suite is started.

Instance Attribute Details

#count (rw)

The ‘StartNotification` represents a notification sent by the reporter when the suite is started. It contains the expected amount of examples to be executed, and the load time of ::RSpec.

[ GitHub ]

  
# File 'rspec-core/lib/rspec/core/notifications.rb', line 26

StartNotification = Struct.new(:count, :load_time)

#load_time (rw)

The ‘StartNotification` represents a notification sent by the reporter when the suite is started. It contains the expected amount of examples to be executed, and the load time of ::RSpec.

[ GitHub ]

  
# File 'rspec-core/lib/rspec/core/notifications.rb', line 26

StartNotification = Struct.new(:count, :load_time)