Exception: Bitfab::ReplayError
- Inherits:
-
StandardError
- Object
- StandardError
- Bitfab::ReplayError
- Defined in:
- lib/bitfab/replay.rb
Overview
Whole-run replay failure with every item collected before the run failed.
Instance Attribute Summary collapse
-
#items ⇒ Object
readonly
Returns the value of attribute items.
-
#test_run_id ⇒ Object
readonly
Returns the value of attribute test_run_id.
-
#test_run_url ⇒ Object
readonly
Returns the value of attribute test_run_url.
Instance Method Summary collapse
-
#initialize(message, items:, test_run_id:, test_run_url:) ⇒ ReplayError
constructor
A new instance of ReplayError.
Constructor Details
#initialize(message, items:, test_run_id:, test_run_url:) ⇒ ReplayError
Returns a new instance of ReplayError.
31 32 33 34 35 36 |
# File 'lib/bitfab/replay.rb', line 31 def initialize(, items:, test_run_id:, test_run_url:) super() @items = items @test_run_id = test_run_id @test_run_url = test_run_url end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
29 30 31 |
# File 'lib/bitfab/replay.rb', line 29 def items @items end |
#test_run_id ⇒ Object (readonly)
Returns the value of attribute test_run_id.
29 30 31 |
# File 'lib/bitfab/replay.rb', line 29 def test_run_id @test_run_id end |
#test_run_url ⇒ Object (readonly)
Returns the value of attribute test_run_url.
29 30 31 |
# File 'lib/bitfab/replay.rb', line 29 def test_run_url @test_run_url end |