Sha256: e35e97a3e94d36f8b47714943bbb0a96e486be66282907c778d4592025bf4be5
Contents?: true
Size: 807 Bytes
Versions: 2
Compression:
Stored size: 807 Bytes
Contents
Feature: Scenario outline Background: Given a file named "examples/support/env.rb" with: """ require 'cucumberator' """ Given a file named "examples/step_definitions/extra.rb" with: """ When(/I do some magical stuff with '(\w+)'/) do |*args| # just example end """ Scenario: without cucumberator step Given a file named "examples/scenario_outline.feature" with: """ Feature: example Scenario Outline: run and exit When I do some magical stuff with '<fruit>' Examples: | fruit | | bananas | """ When I run `cucumber examples/scenario_outline.feature` interactively Then it should pass with: """ 1 scenario (1 passed) 1 step (1 passed) """
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumberator-1.0.3 | features/scenario_outline.feature |
cucumberator-1.0.2 | features/scenario_outline.feature |