BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
0 deletions
+78
-0
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