rename repeating -> recurring, repeat -> recurrence

This commit is contained in:
Carsten Otto 2015-02-10 16:25:27 +01:00
parent ab02d09830
commit dfe8735c0d
35 changed files with 125 additions and 125 deletions

View file

@ -1,7 +1,7 @@
Feature: Manage recurring todos
In order to manage repeating todos
In order to manage recurring todos
As a Tracks user
I want to view, edit, add, or remove recurrence patterns of repeating todos
I want to view, edit, add, or remove recurrence patterns of recurring todos
Background:
Given the following user record
@ -9,11 +9,11 @@ Feature: Manage recurring todos
| testuser | secret | false |
And I have logged in as "testuser" with password "secret"
And I have a context called "test context"
And I have a repeat pattern called "run tests"
And I have a recurrence pattern called "run tests"
@javascript
Scenario: Being able to select daily, weekly, monthly and yearly pattern
When I go to the repeating todos page
When I go to the recurring todos page
And I follow "Add a new recurring action"
Then I should see the form for "Daily" recurrence pattern
When I select "Weekly" recurrence pattern
@ -26,27 +26,27 @@ Feature: Manage recurring todos
Then I should see the form for "Daily" recurrence pattern
@javascript
Scenario: I can mark a repeat pattern as starred
When I go to the repeating todos page
Scenario: I can mark a recurrence pattern as starred
When I go to the recurring todos page
And I star the pattern "run tests"
Then the pattern "run tests" should be starred
@javascript
Scenario: I can edit a repeat pattern
When I go to the repeating todos page
Scenario: I can edit a recurrence pattern
When I go to the recurring todos page
And I edit the name of the pattern "run tests" to "report test results"
Then the pattern "report test results" should be in the state list "active"
And I should not see "run tests"
@javascript
Scenario: I can delete a repeat pattern
When I go to the repeating todos page
Scenario: I can delete a recurrence pattern
When I go to the recurring todos page
And I delete the pattern "run tests"
And I should not see "run tests"
@javascript
Scenario: I can mark a repeat pattern as done
When I go to the repeating todos page
Scenario: I can mark a recurrence pattern as done
When I go to the recurring todos page
Then the pattern "run tests" should be in the state list "active"
And the state list "completed" should be empty
When I mark the pattern "run tests" as complete
@ -54,9 +54,9 @@ Feature: Manage recurring todos
And the state list "active" should be empty
@javascript
Scenario: I can reactivate a repeat pattern
Given I have a completed repeat pattern "I'm done"
When I go to the repeating todos page
Scenario: I can reactivate a recurrence pattern
Given I have a completed recurrence pattern "I'm done"
When I go to the recurring todos page
Then the pattern "I'm done" should be in the state list "completed"
When I mark the pattern "I'm done" as active
Then the pattern "I'm done" should be in the state list "active"
@ -67,11 +67,11 @@ Feature: Manage recurring todos
When I go to the home page
Then I should see the todo "run tests"
When I follow the recurring todo link of "run tests"
Then I should be on the repeating todos page
Then I should be on the recurring todos page
@javascript
Scenario: Deleting a recurring todo with ending pattern will show message
When I go to the repeating todos page
When I go to the recurring todos page
And I mark the pattern "run tests" as complete
And I go to the home page
Then I should see "run tests"