summaryrefslogtreecommitdiff
path: root/features/dashboard
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-20 11:59:59 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-20 12:39:27 -0200
commit3d52e139b13ad077286f2f9f46b7e98f43ad9564 (patch)
tree22c70561b0f64851d938e44661aafeed3a2c80b2 /features/dashboard
parent408e010d65e7e2e2b64a694e12d44636d7d81dec (diff)
downloadgitlab-ce-3d52e139b13ad077286f2f9f46b7e98f43ad9564.tar.gz
Rename Tasks to Todos
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/todos.feature (renamed from features/dashboard/tasks.feature)22
1 files changed, 11 insertions, 11 deletions
diff --git a/features/dashboard/tasks.feature b/features/dashboard/todos.feature
index 9d4f386f7dd..1e7b1b50d64 100644
--- a/features/dashboard/tasks.feature
+++ b/features/dashboard/todos.feature
@@ -1,5 +1,5 @@
@dashboard
-Feature: Dashboard Tasks
+Feature: Dashboard Todos
Background:
Given I sign in as a user
And I own project "Shop"
@@ -7,32 +7,32 @@ Feature: Dashboard Tasks
And "Mary Jane" is a developer of project "Shop"
And "Mary Jane" owns private project "Enterprise"
And I am a developer of project "Enterprise"
- And I have pending tasks
- And I visit dashboard task queue page
+ And I have todos
+ And I visit dashboard todos page
@javascript
- Scenario: I mark pending tasks as done
- Then I should see pending tasks assigned to me
- And I mark the pending task as done
+ Scenario: I mark todos as done
+ Then I should see todos assigned to me
+ And I mark the todo as done
And I click on the "Done" tab
- Then I should see all tasks marked as done
+ Then I should see all todos marked as done
@javascript
Scenario: I filter by project
Given I filter by "Enterprise"
- Then I should not see tasks
+ Then I should not see todos
@javascript
Scenario: I filter by author
Given I filter by "John Doe"
- Then I should not see tasks related to "Mary Jane" in the list
+ Then I should not see todos related to "Mary Jane" in the list
@javascript
Scenario: I filter by type
Given I filter by "Issue"
- Then I should not see tasks related to "Merge Requests" in the list
+ Then I should not see todos related to "Merge Requests" in the list
@javascript
Scenario: I filter by action
Given I filter by "Mentioned"
- Then I should not see tasks related to "Assignments" in the list
+ Then I should not see todos related to "Assignments" in the list