When I start the cucumber, it displays the possible steps that I should determine, an example from the RSpec book:
1 scenario (1 undefined) 4 steps (4 undefined) 0m0.001s You can implement step definitions for undefined steps with these snippets: Given /^I am not yet playing$/ do pending end When /^I start a new game$/ do pending end Then /^the game should say "Welcome to CodeBreaker"$/ do pending end Then /^the game should say "Enter guess:"$/ do pending end
Is there a way for it to automatically create a step description file, so I donβt need to rewrite or copy the paste manually, but can I just set them more general?
source share