File: move.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 (45 lines) | stat: -rw-r--r-- 1,526 bytes parent folder | download | duplicates (2)
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: Move file or directory

  As a user of aruba
  I want ot move a file or a directory
  To setup my tests

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

  Scenario: Move file
    Given a file named "features/move.feature" with:
    """
    Feature: Move
      Scenario: Move
        Given an empty file named "file1.txt"
        And an empty file named "file2.txt"
        And an empty file named "file3.txt"
        When I move a file named "file1.txt" to "new_file1.txt"
        When I move a file from "file2.txt" to "new_file2.txt"
        When I move the file "file3.txt" to "new_file3.txt"
        Then a file named "new_file1.txt" should exist
        Then a file named "new_file2.txt" should exist
        Then a file named "new_file3.txt" should exist
    """
    When I run `cucumber`
    Then the features should all pass

  Scenario: Move directory
    Given a file named "features/move.feature" with:
    """
    Feature: Move
      Scenario: Move
        Given a directory named "dir1.d"
        And a directory named "dir2.d"
        And a directory named "dir3.d"
        When I move a directory named "dir1.d" to "new_dir1.d"
        When I move a directory from "dir2.d" to "new_dir2.d"
        When I move the directory "dir3.d" to "new_dir3.d"
        Then a directory named "new_dir1.d" should exist
        Then a directory named "new_dir2.d" should exist
        Then a directory named "new_dir3.d" should exist
    """
    When I run `cucumber`
    Then the features should all pass