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