Skip to content

Instantly share code, notes, and snippets.

@josephwilk
Created February 7, 2009 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephwilk/59939 to your computer and use it in GitHub Desktop.
Save josephwilk/59939 to your computer and use it in GitHub Desktop.
# the feature we are trying features/manage_cukes.feature
Feature: Manage cukes
In order to use scenario outlines
everything should work
Scenario Outline: Testing scenario outlines # examples/tickets/test.feature:6
Given there are <cuke_versions>
Examples:
| cuke_versions |
| cuke_version 1 |
| cuke_version 2 |
| cuke_version 3 |
| cuke_version 4 |
4 scenarios
4 undefined steps
You can implement step definitions for missing steps with these snippets:
Given /^there are cuke_version 1$/ do
pending
end
Given /^there are cuke_version 2$/ do
pending
end
Given /^there are cuke_version 3$/ do
pending
end
Given /^there are cuke_version 4$/ do
pending
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment