Sha256: d402f7dde1bd4e392dc8a946136c0dc5a6b8058107fe15dce8585d9284b0a193
Contents?: true
Size: 745 Bytes
Versions: 99
Compression:
Stored size: 745 Bytes
Contents
# Make sure tab indentation is preserved in this feature! Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/585 Scenario: Tab indentation should work Given a standard Cucumber project directory structure And a file named "features/f.feature" with: """ Feature: developer creates a skeleton Ruby application Scenario: create a new application Given a tab indented pystring: \"\"\" I'm tab and space indented \"\"\" And a file named "features/step_definitions/steps.rb" with: \"\"\" Given /a tab indented pystring:/ do |s| s.should == "I'm tab\n and space indented" end \"\"\" """ When I run cucumber features/f.feature Then STDERR should be empty And it should pass
Version data entries
99 entries across 97 versions & 11 rubygems