Class: Cucumber::Rake::Task::InProcessCucumberRunner
- Defined in:
- lib/cucumber/rake/task.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
Instance Method Summary collapse
-
#initialize(libs, cucumber_opts, feature_files) ⇒ InProcessCucumberRunner
constructor
A new instance of InProcessCucumberRunner.
- #run ⇒ Object
Constructor Details
#initialize(libs, cucumber_opts, feature_files) ⇒ InProcessCucumberRunner
Returns a new instance of InProcessCucumberRunner.
31 32 33 34 35 36 37 38 |
# File 'lib/cucumber/rake/task.rb', line 31 def initialize(libs, cucumber_opts, feature_files) raise "libs must be an Array when running in-process" unless Array === libs libs.reverse.each{|lib| $LOAD_PATH.unshift(lib)} @args = ( cucumber_opts + feature_files ).flatten.compact end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
29 30 31 |
# File 'lib/cucumber/rake/task.rb', line 29 def args @args end |