Sha256: c178a7cfae42769ffdbefadcd370393a1e3309179f8035483ea9a41e228a3f40
Contents?: true
Size: 1.71 KB
Versions: 6
Compression:
Stored size: 1.71 KB
Contents
Feature: Snippets Cucumber helpfully prints out any undefined step definitions as a code snippet suggestion, which you can then paste into a step definitions file of your choosing. Scenario: Snippet for undefined step with a pystring Given a file named "features/undefined_steps.feature" with: """ Feature: Scenario: pystring Given a pystring \"\"\" example with <html> entities \"\"\" When a simple when step And another when step Then a simple then step """ When I run `cucumber features/undefined_steps.feature -s` Then the output should contain: """ Given(/^a pystring$/) do |string| pending # Write code here that turns the phrase above into concrete actions end When(/^a simple when step$/) do pending # Write code here that turns the phrase above into concrete actions end When(/^another when step$/) do pending # Write code here that turns the phrase above into concrete actions end Then(/^a simple then step$/) do pending # Write code here that turns the phrase above into concrete actions end """ Scenario: Snippet for undefined step with a step table Given a file named "features/undefined_steps.feature" with: """ Feature: Scenario: table Given a table | table | |example| """ When I run `cucumber features/undefined_steps.feature -s` Then the output should contain: """ Given(/^a table$/) do |table| # table is a Cucumber::MultilineArgument::DataTable pending # Write code here that turns the phrase above into concrete actions end """
Version data entries
6 entries across 6 versions & 2 rubygems