Class: ParallelCucumber::Job
- Inherits:
-
Object
- Object
- ParallelCucumber::Job
- Defined in:
- lib/parallel_cucumber/job.rb
Constant Summary collapse
- RUN_TESTS =
:run_tests- PRECHECK =
:precheck- DIE =
:die
Instance Attribute Summary collapse
-
#details ⇒ Object
Returns the value of attribute details.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, details = nil) ⇒ Job
constructor
A new instance of Job.
Constructor Details
#initialize(type, details = nil) ⇒ Job
Returns a new instance of Job.
8 9 10 11 |
# File 'lib/parallel_cucumber/job.rb', line 8 def initialize(type, details = nil) @type = type @details = details end |
Instance Attribute Details
#details ⇒ Object
Returns the value of attribute details.
7 8 9 |
# File 'lib/parallel_cucumber/job.rb', line 7 def details @details end |
#type ⇒ Object
Returns the value of attribute type.
7 8 9 |
# File 'lib/parallel_cucumber/job.rb', line 7 def type @type end |