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
Jérome Perrin
gitlab-ce
Commits
7e2806a1
Commit
7e2806a1
authored
Mar 23, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added tests for setting multiple status on issues
parent
703f7c5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletion
+48
-1
app/views/shared/issuable/_filter.html.haml
app/views/shared/issuable/_filter.html.haml
+1
-1
spec/features/issues/update_issues_spec.rb
spec/features/issues/update_issues_spec.rb
+47
-0
No files found.
app/views/shared/issuable/_filter.html.haml
View file @
7e2806a1
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
.issues_bulk_update.hide
.issues_bulk_update.hide
=
form_tag
bulk_update_namespace_project_issues_path
(
@project
.
namespace
,
@project
),
method: :post
do
=
form_tag
bulk_update_namespace_project_issues_path
(
@project
.
namespace
,
@project
),
method: :post
do
.filter-item.inline
.filter-item.inline
=
dropdown_tag
(
"Status"
,
options:
{
toggle_class:
"js-issue-status"
,
title:
"Change status"
,
dropdown_class:
"dropdown-menu-selectable"
,
data:
{
field_name:
"update[state_event]"
}
}
)
do
=
dropdown_tag
(
"Status"
,
options:
{
toggle_class:
"js-issue-status"
,
title:
"Change status"
,
dropdown_class:
"dropdown-menu-s
tatus dropdown-menu-s
electable"
,
data:
{
field_name:
"update[state_event]"
}
}
)
do
%ul
%ul
%li
%li
%a
{
href:
"#"
,
data:
{
id:
"reopen"
}}
Open
%a
{
href:
"#"
,
data:
{
id:
"reopen"
}}
Open
...
...
spec/features/issues/update_issues_spec.rb
0 → 100644
View file @
7e2806a1
require
'rails_helper'
feature
'Multiple issue updating from issues#index'
,
feature:
true
do
let!
(
:project
)
{
create
(
:project
)
}
let!
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let!
(
:user
)
{
create
(
:user
)}
context
'status update'
,
js:
true
do
before
do
project
.
team
<<
[
user
,
:master
]
login_as
(
user
)
end
it
'should be set to closed'
do
visit
namespace_project_issues_path
(
project
.
namespace
,
project
)
find
(
'#check_all_issues'
).
click
find
(
'.js-issue-status'
).
click
find
(
'.dropdown-menu-status a'
,
text:
'Closed'
).
click
click_update_issues_button
expect
(
page
).
to
have_selector
(
'.issue'
,
count:
0
)
end
it
'should be set to open'
do
create_closed
visit
namespace_project_issues_path
(
project
.
namespace
,
project
)
find
(
'.issues-state-filters a'
,
text:
'Closed'
).
click
find
(
'#check_all_issues'
).
click
find
(
'.js-issue-status'
).
click
find
(
'.dropdown-menu-status a'
,
text:
'Open'
).
click
click_update_issues_button
expect
(
page
).
to
have_selector
(
'.issue'
,
count:
0
)
end
end
def
create_closed
create
(
:issue
,
project:
project
,
state: :closed
)
end
def
click_update_issues_button
find
(
'.update_selected_issues'
).
click
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