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)
-
- (Fixnum) count
the number counted.
-
- (Float) load_time
the number of seconds taken to boot RSpec and load the spec files.
Instance Attribute Details
- (Fixnum) count
the number counted
23 24 25 |
# File 'lib/rspec/core/notifications.rb', line 23 def count @count end |
- (Float) load_time
the number of seconds taken to boot RSpec and load the spec files
23 24 25 |
# File 'lib/rspec/core/notifications.rb', line 23 def load_time @load_time end |