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.
301 302 303 304 305 306 307 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 301 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.
299 300 301 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 299 def description @description end |
#details ⇒ Object (readonly)
Returns the value of attribute details.
299 300 301 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 299 def details @details end |
#file_path ⇒ Object (readonly)
Returns the value of attribute file_path.
299 300 301 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 299 def file_path @file_path end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
299 300 301 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 299 def status @status end |
#time_finished ⇒ Object (readonly)
Returns the value of attribute time_finished.
299 300 301 |
# File 'lib/rspec/multiprocess_runner/worker.rb', line 299 def time_finished @time_finished end |