josephwilk (owner)

Revisions

gist: 59939 Download_button fork
public
Public Clone URL: git://gist.github.com/59939.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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