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
|
Feature: Append content to file
You might want to append some content to a file.
Background:
Given I use a fixture named "cli-app"
Scenario: Append to a existing file
Given a file named "features/non-existence.feature" with:
"""
Feature: Existence
Scenario: Existence
Given a file named "foo/bar/example.txt" with:
\"\"\"
hello world
\"\"\"
When I append to "foo/bar/example.txt" with:
\"\"\"
this was appended
\"\"\"
Then the file named "foo/bar/example.txt" should contain:
\"\"\"
hello worldthis was appended
\"\"\"
"""
When I run `cucumber`
Then the features should all pass
Scenario: Append to a non-existing file
Given a file named "features/non-existence.feature" with:
"""
Feature: Existence
Scenario: Existence
Given a file named "foo/bar/example.txt" does not exist
When I append to "foo/bar/example.txt" with:
\"\"\"
this was appended
\"\"\"
Then the file named "foo/bar/example.txt" should contain:
\"\"\"
this was appended
\"\"\"
"""
When I run `cucumber`
Then the features should all pass
|