Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
45c93b52
Commit
45c93b52
authored
Apr 07, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Todos spec
parent
6ae6f29a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
0 deletions
+79
-0
spec/features/todos/todos_spec.rb
spec/features/todos/todos_spec.rb
+79
-0
No files found.
spec/features/todos/todos_spec.rb
0 → 100644
View file @
45c93b52
require
'spec_helper'
describe
'Dashboard Todos'
,
feature:
true
do
let
(
:user
){
create
(
:user
)
}
let
(
:author
){
create
(
:user
)
}
let
(
:project
){
create
(
:project
)
}
let
(
:issue
){
create
(
:issue
)
}
let
(
:todos_per_page
){
Todo
.
default_per_page
}
let
(
:todos_total
){
todos_per_page
+
1
}
describe
'GET /dashboard/todos'
do
context
'User do not have todos'
do
before
do
login_as
(
user
)
visit
dashboard_todos_path
end
it
'shows "All done" message'
do
expect
(
page
).
to
have_content
"You're all done!"
end
end
context
'User has a todo'
,
js:
true
do
before
do
create
(
:todo
,
:mentioned
,
user:
user
,
project:
project
,
target:
issue
,
author:
author
)
login_as
(
user
)
visit
dashboard_todos_path
end
it
'todo is present'
do
expect
(
page
).
to
have_selector
(
'.todos-list .todo'
,
count:
1
)
end
describe
'deleting the todo'
do
before
do
first
(
'.done-todo'
).
click
end
it
'is removed from the list'
do
expect
(
page
).
not_to
have_selector
(
'.todos-list .todo'
)
end
it
'shows "All done" message'
do
expect
(
page
).
to
have_content
(
"You're all done!"
)
end
end
end
context
'User has multiple pages of Todos'
do
let
(
:todo_total_pages
){
(
todos_total
.
to_f
/
todos_per_page
).
ceil
}
before
do
todos_total
.
times
do
create
(
:todo
,
:mentioned
,
user:
user
,
project:
project
,
target:
issue
,
author:
author
)
end
login_as
(
user
)
visit
dashboard_todos_path
end
it
'is paginated'
do
expect
(
page
).
to
have_selector
(
'.gl-pagination'
)
end
it
'is has the right number of pages'
do
expect
(
page
).
to
have_selector
(
'.gl-pagination .page'
,
count:
todo_total_pages
)
end
describe
'deleting last todo from last page'
,
js:
true
do
it
'redirects to the previous page'
do
page
.
within
(
'.gl-pagination'
)
do
click_link
todo_total_pages
.
to_s
end
first
(
'.done-todo'
).
click
expect
(
page
).
to
have_content
(
Todo
.
last
.
body
)
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment