Sha256: d03ee3d21bf34c534cfffa6dca9cdc2caff1105f65a7f62200f7d8a8681fcedb
Contents?: true
Size: 1.51 KB
Versions: 11
Compression:
Stored size: 1.51 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 --format progress` 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
11 entries across 11 versions & 1 rubygems