Class: RSpec::RetrySummary
- Inherits:
-
Object
- Object
- RSpec::RetrySummary
- Defined in:
- sig/rspec/rewind.rbs
Instance Attribute Summary collapse
-
#flaky_examples ⇒ Integer
readonly
Returns the value of attribute flaky_examples.
-
#not_retried_events ⇒ Integer
readonly
Returns the value of attribute not_retried_events.
-
#reset_failed_events ⇒ Integer
readonly
Returns the value of attribute reset_failed_events.
-
#retry_events ⇒ Integer
readonly
Returns the value of attribute retry_events.
-
#sleep_seconds ⇒ Float
readonly
Returns the value of attribute sleep_seconds.
Instance Method Summary collapse
-
#initialize ⇒ RetrySummary
constructor
A new instance of RetrySummary.
- #record ⇒ Object
- #reset! ⇒ void
- #to_message ⇒ String
Constructor Details
#initialize ⇒ RetrySummary
128 |
# File 'sig/rspec/rewind.rbs', line 128
def initialize: () -> void
|
Instance Attribute Details
#flaky_examples ⇒ Integer (readonly)
Returns the value of attribute flaky_examples.
123 124 125 |
# File 'sig/rspec/rewind.rbs', line 123 def flaky_examples @flaky_examples end |
#not_retried_events ⇒ Integer (readonly)
Returns the value of attribute not_retried_events.
124 125 126 |
# File 'sig/rspec/rewind.rbs', line 124 def not_retried_events @not_retried_events end |
#reset_failed_events ⇒ Integer (readonly)
Returns the value of attribute reset_failed_events.
125 126 127 |
# File 'sig/rspec/rewind.rbs', line 125 def reset_failed_events @reset_failed_events end |
#retry_events ⇒ Integer (readonly)
Returns the value of attribute retry_events.
122 123 124 |
# File 'sig/rspec/rewind.rbs', line 122 def retry_events @retry_events end |
#sleep_seconds ⇒ Float (readonly)
Returns the value of attribute sleep_seconds.
126 127 128 |
# File 'sig/rspec/rewind.rbs', line 126 def sleep_seconds @sleep_seconds end |
Instance Method Details
#record ⇒ Object
129 |
# File 'sig/rspec/rewind.rbs', line 129
def record: (Event event) -> untyped
|
#reset! ⇒ void
130 |
# File 'sig/rspec/rewind.rbs', line 130
def reset!: () -> void
|
#to_message ⇒ String
131 |
# File 'sig/rspec/rewind.rbs', line 131
def to_message: (budget: untyped) -> String
|