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
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def concern @concern end |
#errors ⇒ Object
Returns the value of attribute errors
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def errors @errors end |
#review_path ⇒ Object
Returns the value of attribute review_path
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def review_path @review_path end |
#skip_reason ⇒ Object
Returns the value of attribute skip_reason
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def skip_reason @skip_reason end |
#status ⇒ Object
Returns the value of attribute status
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def status @status end |
#test_output ⇒ Object
Returns the value of attribute test_output
10 11 12 |
# File 'lib/rails_proof/ai_test_executor.rb', line 10 def test_output @test_output end |
Instance Method Details
#kept? ⇒ Boolean
19 20 21 |
# File 'lib/rails_proof/ai_test_executor.rb', line 19 def kept? status == :kept end |
#needs_review? ⇒ Boolean
27 28 29 |
# File 'lib/rails_proof/ai_test_executor.rb', line 27 def needs_review? status == :needs_review end |
#rejected? ⇒ Boolean
23 24 25 |
# File 'lib/rails_proof/ai_test_executor.rb', line 23 def rejected? status == :rejected end |
#skipped? ⇒ Boolean
31 32 33 |
# File 'lib/rails_proof/ai_test_executor.rb', line 31 def skipped? status == :skipped end |