Class: RailsProof::AiTestExecutor::Result
- Inherits:
-
Struct
- Object
- Struct
- RailsProof::AiTestExecutor::Result
- Defined in:
- lib/rails_proof/ai_test_executor.rb
Instance Attribute Summary collapse
-
#concern ⇒ Object
Returns the value of attribute concern.
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#review_path ⇒ Object
Returns the value of attribute review_path.
-
#skip_reason ⇒ Object
Returns the value of attribute skip_reason.
-
#status ⇒ Object
Returns the value of attribute status.
-
#test_output ⇒ Object
Returns the value of attribute test_output.
Instance Method Summary collapse
Instance Attribute Details
#concern ⇒ Object
Returns the value of attribute concern
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def concern @concern end |
#errors ⇒ Object
Returns the value of attribute errors
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def errors @errors end |
#review_path ⇒ Object
Returns the value of attribute review_path
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def review_path @review_path end |
#skip_reason ⇒ Object
Returns the value of attribute skip_reason
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def skip_reason @skip_reason end |
#status ⇒ Object
Returns the value of attribute status
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def status @status end |
#test_output ⇒ Object
Returns the value of attribute test_output
11 12 13 |
# File 'lib/rails_proof/ai_test_executor.rb', line 11 def test_output @test_output end |
Instance Method Details
#kept? ⇒ Boolean
20 21 22 |
# File 'lib/rails_proof/ai_test_executor.rb', line 20 def kept? status == :kept end |
#needs_review? ⇒ Boolean
28 29 30 |
# File 'lib/rails_proof/ai_test_executor.rb', line 28 def needs_review? status == :needs_review end |
#rejected? ⇒ Boolean
24 25 26 |
# File 'lib/rails_proof/ai_test_executor.rb', line 24 def rejected? status == :rejected end |
#skipped? ⇒ Boolean
32 33 34 |
# File 'lib/rails_proof/ai_test_executor.rb', line 32 def skipped? status == :skipped end |