Class: RSpec::MultiprocessRunner::ExampleResult
- Inherits:
-
Object
- Object
- RSpec::MultiprocessRunner::ExampleResult
- Defined in:
- lib/rspec/multiprocess_runner/worker.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#file_path ⇒ Object
readonly
Returns the value of attribute file_path.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#time_finished ⇒ Object
readonly
Returns the value of attribute time_finished.
Instance Method Summary collapse
-
#initialize(example_complete_message) ⇒ ExampleResult
constructor
A new instance of ExampleResult.
Constructor Details
#initialize(example_complete_message) ⇒ ExampleResult
Returns a new instance of ExampleResult.
305 306 307 308 309 310 311 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 305 def initialize() @status = ["example_status"] @description = ["description"] @details = ["details"] @file_path = ["file_path"] @time_finished = Time.now end |
Instance Attribute Details
#description ⇒ Object (readonly)
Returns the value of attribute description.
303 304 305 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 303 def description @description end |
#details ⇒ Object (readonly)
Returns the value of attribute details.
303 304 305 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 303 def details @details end |
#file_path ⇒ Object (readonly)
Returns the value of attribute file_path.
303 304 305 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 303 def file_path @file_path end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
303 304 305 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 303 def status @status end |
#time_finished ⇒ Object (readonly)
Returns the value of attribute time_finished.
303 304 305 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 303 def time_finished @time_finished end |