Sha256: 5344da9bc8fe4143eaf7b82bf790c4a13fcd5def68a75949ccd46d3cb0d695de

Contents?: true

Size: 1.22 KB

Versions: 20

Compression:

Stored size: 1.22 KB

Contents

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

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
aruba-0.14.14 features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature
aruba-0.14.13 features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature
aruba-0.14.12 features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature
aruba-0.14.11 features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature
aruba-0.14.10 features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature
aruba-0.14.9 features/steps/filesystem/append_to_file.feature
aruba-0.14.8 features/steps/filesystem/append_to_file.feature
aruba-0.14.7 features/steps/filesystem/append_to_file.feature
aruba-0.14.6 features/steps/filesystem/append_to_file.feature
aruba-0.14.5 features/steps/filesystem/append_to_file.feature
aruba-0.14.4 features/steps/filesystem/append_to_file.feature
aruba-0.14.3 features/steps/filesystem/append_to_file.feature
aruba-win-fix-0.14.2 features/steps/filesystem/append_to_file.feature
aruba-0.14.2 features/steps/filesystem/append_to_file.feature
aruba-0.14.1 features/steps/filesystem/append_to_file.feature
aruba-0.14.0 features/steps/filesystem/append_to_file.feature
aruba-0.13.0 features/steps/filesystem/append_to_file.feature
aruba-0.12.0 features/steps/filesystem/append_to_file.feature
aruba-0.11.2 features/steps/filesystem/append_to_file.feature
aruba-0.11.1 features/steps/filesystem/append_to_file.feature