Reputation: 1748
cucumber-rails
gem to a Gemfile
,bundle install
andrails generate cucumber:install
.I would like to have web_steps.rb
, paths.rb
generated. But those files are not generated. Here is the bash output:
create config/cucumber.yml
create script/cucumber
chmod script/cucumber
create features/step_definitions
create features/support
create features/support/env.rb
exist lib/tasks
create lib/tasks/cucumber.rake
gsub config/database.yml
gsub config/database.yml
force config/database.yml
What do I need to change to generate all the Cucumber files needed?
Upvotes: 0
Views: 428
Reputation: 607
those files are no more generated with newer versions of cucumber:
https://github.com/cucumber/cucumber-rails/issues/174
Upvotes: 2