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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
0960cba0
Commit
0960cba0
authored
May 19, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for label prioritization
parent
25ee66e8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
0 deletions
+78
-0
spec/features/projects/labels/update_prioritization_spec.rb
spec/features/projects/labels/update_prioritization_spec.rb
+78
-0
No files found.
spec/features/projects/labels/update_prioritization_spec.rb
0 → 100644
View file @
0960cba0
require
'spec_helper'
feature
'Prioritize labels'
,
feature:
true
do
include
WaitForAjax
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
name:
'test'
,
namespace:
user
.
namespace
)
}
scenario
'user can prioritize a label'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
(
'No prioritized labels yet'
)
page
.
within
(
'.other-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
end
page
.
within
(
'.prioritized-labels'
)
do
expect
(
page
).
not_to
have_content
(
'No prioritized labels yet'
)
expect
(
page
).
to
have_content
(
'bug'
)
end
end
scenario
'user can unprioritize a label'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
(
'bug'
)
page
.
within
(
'.prioritized-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
end
page
.
within
(
'.other-labels'
)
do
expect
(
page
).
to
have_content
(
'bug'
)
expect
(
page
).
to
have_content
(
'wontfix'
)
end
end
scenario
'user can sort prioritized labels'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
,
priority:
2
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
'bug'
expect
(
page
).
to
have_content
'wontfix'
# Sort labels
find
(
"#label_
#{
bug
.
id
}
"
).
drag_to
find
(
"#label_
#{
wontfix
.
id
}
"
)
page
.
within
(
'.prioritized-labels'
)
do
expect
(
first
(
'li'
)).
to
have_content
(
'wontfix'
)
expect
(
page
.
all
(
'li'
).
last
).
to
have_content
(
'bug'
)
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