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
Kazuhiko Shiozaki
gitlab-ce
Commits
617ba013
Commit
617ba013
authored
Dec 10, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests for new issuable sidebar
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
6117ae98
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
14 deletions
+30
-14
app/views/shared/issuable/_sidebar.html.haml
app/views/shared/issuable/_sidebar.html.haml
+10
-7
spec/features/issues_spec.rb
spec/features/issues_spec.rb
+20
-7
No files found.
app/views/shared/issuable/_sidebar.html.haml
View file @
617ba013
...
...
@@ -8,7 +8,7 @@
=
cross_project_reference
(
@project
,
issuable
)
=
clipboard_button
(
clipboard_target:
'span#cross-project-reference'
)
.block
.block
.assignee
.title
%label
Assignee:
...
...
@@ -19,12 +19,12 @@
-
if
issuable
.
assignee
%strong
=
link_to_member
(
@project
,
issuable
.
assignee
,
size:
24
)
-
else
n
one
N
one
.selectbox
=
users_select_tag
(
"
#{
issuable
.
class
.
table_name
.
singularize
}
[assignee_id]"
,
placeholder:
'Select assignee'
,
class:
'custom-form-control js-select2 js-assignee'
,
selected:
issuable
.
assignee_id
,
project:
@target_project
,
null_user:
true
,
current_user:
true
,
first_user:
true
)
.block
.block
.milestone
.title
%label
Milestone:
...
...
@@ -39,13 +39,13 @@
=
icon
(
'clock-o'
)
=
issuable
.
milestone
.
title
-
else
n
one
N
one
.selectbox
=
f
.
select
(
:milestone_id
,
milestone_options
(
issuable
),
{
include_blank:
true
},
{
class:
'select2 select2-compact js-select2 js-milestone'
,
data:
{
placeholder:
'Select milestone'
}})
=
hidden_field_tag
:issuable_context
=
f
.
submit
class:
'btn hide'
-
if
issuable
.
labels
.
any?
-
if
issuable
.
project
.
labels
.
any?
.block
.title
%label
Labels
...
...
@@ -53,8 +53,11 @@
.pull-right
=
link_to
'Edit'
,
'#'
,
class:
'edit-link'
.value.issuable-show-labels
-
if
issuable
.
labels
.
any?
-
issuable
.
labels
.
each
do
|
label
|
=
link_to_label
(
label
)
-
else
None
.selectbox
=
f
.
collection_select
:label_ids
,
issuable
.
project
.
labels
.
all
,
:id
,
:name
,
{
selected:
issuable
.
label_ids
},
multiple:
true
,
class:
'select2 js-select2'
,
data:
{
placeholder:
"Select labels"
}
...
...
spec/features/issues_spec.rb
View file @
617ba013
...
...
@@ -69,7 +69,10 @@ describe 'Issues', feature: true do
click_button
'Save changes'
expect
(
page
).
to
have_content
'Assignee: none'
page
.
within
(
'.assignee'
)
do
expect
(
page
).
to
have_content
'None'
end
expect
(
issue
.
reload
.
assignee
).
to
be_nil
end
end
...
...
@@ -202,7 +205,7 @@ describe 'Issues', feature: true do
it
'with dropdown menu'
do
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
find
(
'.
context
#issue_assignee_id'
).
find
(
'.
issuable-sidebar
#issue_assignee_id'
).
set
project
.
team
.
members
.
first
.
id
click_button
'Update Issue'
...
...
@@ -241,12 +244,16 @@ describe 'Issues', feature: true do
it
'with dropdown menu'
do
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
find
(
'.
context
'
).
find
(
'.
issuable-sidebar
'
).
select
(
milestone
.
title
,
from:
'issue_milestone_id'
)
click_button
'Update Issue'
expect
(
page
).
to
have_content
"Milestone changed to
#{
milestone
.
title
}
"
expect
(
page
).
to
have_content
"Milestone:
#{
milestone
.
title
}
"
page
.
within
(
'.milestone'
)
do
expect
(
page
).
to
have_content
milestone
.
title
end
has_select?
(
'issue_assignee_id'
,
selected:
milestone
.
title
)
end
end
...
...
@@ -279,13 +286,19 @@ describe 'Issues', feature: true do
it
'allows user to remove assignee'
,
js:
true
do
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
expect
(
page
).
to
have_content
"Assignee:
#{
user2
.
name
}
"
first
(
'#s2id_issue_assignee_id'
).
click
page
.
within
(
'.assignee'
)
do
expect
(
page
).
to
have_content
user2
.
name
end
find
(
'.assignee .edit-link'
).
click
sleep
2
# wait for ajax stuff to complete
first
(
'.user-result'
).
click
expect
(
page
).
to
have_content
'Assignee: none'
page
.
within
(
'.assignee'
)
do
expect
(
page
).
to
have_content
'None'
end
sleep
2
# wait for ajax stuff to complete
expect
(
issue
.
reload
.
assignee
).
to
be_nil
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