Sha256: 2bc8a19ef8191d9ce64e23ea1533f28b5af0212a6428eb1b825e5f2b88a7b7d5

Contents?: true

Size: 595 Bytes

Versions: 3

Compression:

Stored size: 595 Bytes

Contents

Feature: Perform Backups
  In order to ensure files are correctly backed up
  I will need to run the backup script
  
  Scenario: Run a backup from source to target
    Given a directory named "source"
    Given a file named "source/one" with:
      """
      xxxx
      """
    Given a file named "source/two" with:
      """
      xxxx
      """
    Given a directory named "target"
    When I successfully run `rsyncbackup --log-level debug source target`
    Then a file named "target/.lastfull" should exist
    And a directory named "target/.incomplete" should not exist
    


    
    

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rsyncbackup-1.0.2 features/backup.feature
rsyncbackup-1.0.1 features/backup.feature
rsyncbackup-1.0.0 features/backup.feature