2010-12-25 16:28:53 +01:00
|
|
|
Feature: Manage deferred todos
|
|
|
|
|
In order to hide todos that require attention in the future and not now
|
|
|
|
|
As a Tracks user
|
|
|
|
|
I want to defer these and manage them in a tickler
|
|
|
|
|
|
|
|
|
|
Background:
|
|
|
|
|
Given the following user record
|
|
|
|
|
| login | password | is_admin |
|
|
|
|
|
| testuser | secret | false |
|
|
|
|
|
And there exists a project "manage me" for user "testuser"
|
|
|
|
|
And I have logged in as "testuser" with password "secret"
|
|
|
|
|
|
|
|
|
|
Scenario: Editing the description of a todo updated the todo
|
2011-01-08 09:12:37 +01:00
|
|
|
Given this is a pending scenario
|
2010-12-25 16:28:53 +01:00
|
|
|
|
|
|
|
|
Scenario: Editing the context of a todo moves it to the new context
|
2011-01-08 09:12:37 +01:00
|
|
|
Given this is a pending scenario
|
2010-12-25 16:28:53 +01:00
|
|
|
|
|
|
|
|
Scenario: Removing the show from date from a todo removes it from the tickler
|
2011-01-08 09:12:37 +01:00
|
|
|
Given this is a pending scenario
|
|
|
|
|
|
|
|
|
|
Scenario: Opening the tickler page shows me all deferred todos
|
|
|
|
|
Given I have a deferred todo "not yet now"
|
|
|
|
|
And I have a todo "now is a good time"
|
|
|
|
|
When I go to the tickler page
|
|
|
|
|
Then I should see "not yet now"
|
|
|
|
|
And I should not see "now is a good time"
|