1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
Feature: Check file content
Background:
Given I use a fixture named "cli-app"
Scenario: Check file contents with plain text
Given a file named "features/non-existence.feature" with:
"""
Feature: Check
Scenario: Check
Given a file named "foo" with:
\"\"\"
hello world
\"\"\"
Then the file "foo" should contain "hello world"
And the file "foo" should not contain "HELLO WORLD"
"""
When I run `cucumber`
Then the features should all pass
Scenario: Check file contents with regular expression
Given a file named "features/non-existence.feature" with:
"""
Feature: Check
Background:
Given a file named "foo" with:
\"\"\"
hello world
\"\"\"
Scenario: Check #1
Then the file "foo" should match /hel.o world/
And the file "foo" should not match /HELLO WORLD/
Scenario: Check #2
Then the file "foo" should match %r<hel.o world>
And the file "foo" should not match %r<HELLO WORLD>
"""
When I run `cucumber`
Then the features should all pass
Scenario: Check file contents with cucumber doc string
Given a file named "features/non-existence.feature" with:
"""
Feature: Existence
Scenario: Existence
Given a file named "foo" with:
\"\"\"
foo
bar
baz
foobar
\"\"\"
Then the file "foo" should contain:
\"\"\"
bar
baz
\"\"\"
"""
When I run `cucumber`
Then the features should all pass
|