Class: Specbandit::BatchResult
- Inherits:
-
Struct
- Object
- Struct
- Specbandit::BatchResult
- Defined in:
- lib/specbandit/adapter.rb
Overview
Result of running a single batch of test files. Adapters return instances of this (or a subclass) from #run_batch.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#batch_num ⇒ Object
Returns the value of attribute batch_num.
-
#duration ⇒ Object
Returns the value of attribute duration.
-
#exit_code ⇒ Object
Returns the value of attribute exit_code.
-
#files ⇒ Object
Returns the value of attribute files.
Instance Attribute Details
#batch_num ⇒ Object
Returns the value of attribute batch_num
6 7 8 |
# File 'lib/specbandit/adapter.rb', line 6 def batch_num @batch_num end |
#duration ⇒ Object
Returns the value of attribute duration
6 7 8 |
# File 'lib/specbandit/adapter.rb', line 6 def duration @duration end |
#exit_code ⇒ Object
Returns the value of attribute exit_code
6 7 8 |
# File 'lib/specbandit/adapter.rb', line 6 def exit_code @exit_code end |
#files ⇒ Object
Returns the value of attribute files
6 7 8 |
# File 'lib/specbandit/adapter.rb', line 6 def files @files end |