Sha256: 4c1bea932c291099275981c3e11d8d38e870d4aa06607a3584a0b06facc42b82
Contents?: true
Size: 1.12 KB
Versions: 22
Compression:
Stored size: 1.12 KB
Contents
Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/475 Scenario: error on pystring in scenario outline with pretty formatter Given a standard Cucumber project directory structure And a file named "features/f.feature" with: """ Feature: F Scenario Outline: S Given a multiline string: \"\"\" hello <who> \"\"\" Examples: | who | | aslak | | david | """ And a file named "features/step_definitions/steps.rb" with: """ Given /a multiline string:/ do |s| s.should =~ /hello (\w+)/ end """ When I run cucumber features/f.feature Then STDERR should be empty And it should pass with """ Feature: F Scenario Outline: S # features/f.feature:2 Given a multiline string: # features/step_definitions/steps.rb:1 \"\"\" hello <who> \"\"\" Examples: | who | | aslak | | david | 2 scenarios (2 passed) 2 steps (2 passed) """
Version data entries
22 entries across 22 versions & 5 rubygems
Version | Path |
---|---|
cucumber-0.4.0 | features/bug_475.feature |
cucumber-0.4.0.rc1 | features/bug_475.feature |