Class: RSpec::Core::Notifications::StartNotification
- Inherits:
-
Struct
- Object
- Struct
- RSpec::Core::Notifications::StartNotification
- Defined in:
- 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 collapse
-
#count ⇒ Fixnum
the number counted.
-
#load_time ⇒ Float
the number of seconds taken to boot RSpec and load the spec files.
Instance Attribute Details
#count ⇒ Fixnum
the number counted
26 27 28 |
# File 'lib/rspec/core/notifications.rb', line 26 def count @count end |
#load_time ⇒ Float
the number of seconds taken to boot RSpec and load the spec files
26 27 28 |
# File 'lib/rspec/core/notifications.rb', line 26 def load_time @load_time end |