Class: Parabot::TestRunner::TestResult
- Inherits:
-
Struct
- Object
- Struct
- Parabot::TestRunner::TestResult
- Defined in:
- lib/parabot/test_runner.rb
Instance Attribute Summary collapse
-
#exit_status ⇒ Object
Returns the value of attribute exit_status.
-
#output ⇒ Object
Returns the value of attribute output.
Instance Method Summary collapse
Instance Attribute Details
#exit_status ⇒ Object
Returns the value of attribute exit_status
17 18 19 |
# File 'lib/parabot/test_runner.rb', line 17 def exit_status @exit_status end |
#output ⇒ Object
Returns the value of attribute output
17 18 19 |
# File 'lib/parabot/test_runner.rb', line 17 def output @output end |
Instance Method Details
#success? ⇒ Boolean
18 19 20 |
# File 'lib/parabot/test_runner.rb', line 18 def success? exit_status.zero? end |