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
9052ec8d
Commit
9052ec8d
authored
May 19, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added due date tests
parent
a69ab104
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
spec/features/issues_spec.rb
spec/features/issues_spec.rb
+37
-0
No files found.
spec/features/issues_spec.rb
View file @
9052ec8d
...
...
@@ -489,6 +489,43 @@ describe 'Issues', feature: true do
end
end
describe
'due date'
do
context
'update due on issue#show'
,
js:
true
do
let
(
:issue
)
{
create
(
:issue
,
project:
project
,
author:
@user
,
assignee:
@user
)
}
before
do
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
end
it
'should add due date to issue'
do
page
.
within
'.due_date'
do
click_link
'Edit'
page
.
within
'.ui-datepicker-calendar'
do
first
(
'.ui-state-default'
).
click
end
expect
(
page
).
to
have_no_content
'None'
end
end
it
'should remove due date from issue'
do
page
.
within
'.due_date'
do
click_link
'Edit'
page
.
within
'.ui-datepicker-calendar'
do
first
(
'.ui-state-default'
).
click
end
expect
(
page
).
to
have_no_content
'None'
click_link
'remove due date'
expect
(
page
).
to
have_content
'None'
end
end
end
end
def
first_issue
page
.
all
(
'ul.issues-list > li'
).
first
.
text
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