Class: Hydra::Messages::Runner::RSpecResult
- Inherits:
-
Hydra::Message
- Object
- Hydra::Message
- Hydra::Messages::Runner::RSpecResult
- Defined in:
- lib/hydra/message/runner_messages.rb
Overview
The runner forks to run rspec messages so that specs don’t get rerun. It uses this message to report the results. See Runner::run_rspec_file.
Instance Attribute Summary collapse
-
#output ⇒ Object
the output of the spec.
Instance Method Summary collapse
-
#serialize ⇒ Object
:nodoc:.
Methods inherited from Hydra::Message
Constructor Details
This class inherits a constructor from Hydra::Message
Instance Attribute Details
#output ⇒ Object
the output of the spec
45 46 47 |
# File 'lib/hydra/message/runner_messages.rb', line 45 def output @output end |
Instance Method Details
#serialize ⇒ Object
:nodoc:
46 47 48 |
# File 'lib/hydra/message/runner_messages.rb', line 46 def serialize #:nodoc: super(:output => @output) end |