File: remove_directory.feature

package info (click to toggle)
ruby-aruba 0.14.8-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,216 kB
  • sloc: ruby: 7,951; sh: 21; makefile: 12
file content (38 lines) | stat: -rw-r--r-- 1,117 bytes parent folder | download | duplicates (5)
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
Feature: Remove a directory

  Background:
    Given I use a fixture named "cli-app"

  Scenario: Remove an existing directory
    Given a file named "features/non-existence.feature" with:
    """
    Feature: Remove
      Scenario: Remove
        Given an empty directory named "foo"
        When I remove the directory "foo"
        Then the directory "foo" should not exist
    """
    When I run `cucumber`
    Then the features should all pass

  Scenario: Remove an non-existing directory
    Given a file named "features/non-existence.feature" with:
    """
    Feature: Remove
      Scenario: Remove
        When I remove the directory "foo"
        Then the directory "foo" should not exist
    """
    When I run `cucumber`
    Then the features should not pass

  Scenario: Force remove an non-existing directory
    Given a file named "features/non-existence.feature" with:
    """
    Feature: Remove
      Scenario: Remove
        When I remove the directory "foo" with full force
        Then the directory "foo" should not exist
    """
    When I run `cucumber`
    Then the features should all pass