Sha256: f08d6ac15fcb8aa32299132b569ed960bde8493fdd3d575392b675d398e3d9d8

Contents?: true

Size: 835 Bytes

Versions: 2

Compression:

Stored size: 835 Bytes

Contents

Feature: Daily, weekly and monthly backups

  Scenario Outline: Creating new backups
    Given it is the correct day for <Period> backups
    When I run the backups
    Then I can see a <Period> backup file
    And the <Period> backup file contains the backup command contents
    Examples:
      | Period  |
      | daily   |
      | weekly  |
      | monthly |

  Scenario Outline: Cleaning up old backups
    Given it is the correct day for <Period> backups
    And there are old <Period> backups
    When I run the backups
    Then the old <Period> backups have been removed
    Examples:
      | Period  |
      | daily   |
      | weekly  |
      | monthly |

  Scenario: Notifying a failed run
    Given it is the correct day for daily backups
    When I run the backup and it fails
    Then I have been notified of the failure

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
daily_weekly_monthly-0.0.4 features/daily_weekly_monthly.feature
daily_weekly_monthly-0.0.3 features/daily_weekly_monthly.feature