Class: RspecStarter::Step
- Inherits:
-
Object
- Object
- RspecStarter::Step
- Defined in:
- lib/rspec_starter/legacy/steps/step.rb
Overview
Abstract super class for a step.
Direct Known Subclasses
InvokeRspecStep, PrepareDatabaseStep, RemoveTmpFolderStep, VerifyXvfbStep
Instance Attribute Summary collapse
-
#relevant_options ⇒ Object
readonly
Returns the value of attribute relevant_options.
Instance Method Summary collapse
-
#initialize(runner) ⇒ Step
constructor
A new instance of Step.
- #should_skip? ⇒ Boolean
Constructor Details
#initialize(runner) ⇒ Step
Returns a new instance of Step.
6 7 8 9 |
# File 'lib/rspec_starter/legacy/steps/step.rb', line 6 def initialize(runner) @runner = runner = [] end |
Instance Attribute Details
#relevant_options ⇒ Object (readonly)
Returns the value of attribute relevant_options.
4 5 6 |
# File 'lib/rspec_starter/legacy/steps/step.rb', line 4 def end |
Instance Method Details
#should_skip? ⇒ Boolean
11 12 13 |
# File 'lib/rspec_starter/legacy/steps/step.rb', line 11 def should_skip? !should_execute? end |