Sha256: 66bbe24003f69d05964fa14ec2f8f294a3722c83af049da862c9cf3b08e7338e
Contents?: true
Size: 1.49 KB
Versions: 3
Compression:
Stored size: 1.49 KB
Contents
Feature: Check file content Background: Given I use a fixture named "cli-app" Scenario: Existing file having content Given a file named "features/file_content.feature" with: """ Feature: File content Scenario: file content Given a file named "test.txt" with: \"\"\" Hello World \"\"\" Then the file named "test.txt" should contain: \"\"\" Hello World \"\"\" """ When I run `cucumber` Then the features should all pass Scenario: Existing file having content with special characters Given a file named "features/file_content.feature" with: """ Feature: File content Scenario: file content Given a file named "test.txt" with: \"\"\" UUUUU 1 scenario (1 undefined) 5 steps (5 undefined) \"\"\" Then the file named "test.txt" should contain: \"\"\" UUUUU 1 scenario (1 undefined) 5 steps (5 undefined) \"\"\" """ When I run `cucumber` Then the features should all pass Scenario: Trailing white space is ignored Given a file named "features/file_content.feature" with: """ Feature: File content Scenario: file content Given a file named "test.txt" with: \"\"\" UUUUU \"\"\" Then the file named "test.txt" should contain: \"\"\" UUUUU \"\"\" """ When I run `cucumber` Then the features should all pass
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
aruba-0.9.0.pre | features/steps/filesystem/file_content.feature |
aruba-0.8.1 | features/steps/filesystem/file_content.feature |
aruba-0.8.0 | features/steps/filesystem/file_content.feature |