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
1b3bb52a
Commit
1b3bb52a
authored
Sep 05, 2017
by
Bryce Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix feature spec contexts.
parent
a2a17e0e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
46 deletions
+50
-46
spec/ee/spec/features/issues/service_desk_spec.rb
spec/ee/spec/features/issues/service_desk_spec.rb
+50
-46
No files found.
spec/ee/spec/features/issues/service_desk_spec.rb
View file @
1b3bb52a
...
@@ -3,14 +3,10 @@ require 'spec_helper'
...
@@ -3,14 +3,10 @@ require 'spec_helper'
describe
'Service Desk Issue Tracker'
,
focus:
true
do
describe
'Service Desk Issue Tracker'
,
focus:
true
do
let
(
:project
)
{
create
(
:project
,
:private
,
service_desk_enabled:
true
)
}
let
(
:project
)
{
create
(
:project
,
:private
,
service_desk_enabled:
true
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:regular_issue
)
{
create
(
:issue
,
project:
project
,
title:
'My invisible issue'
,
author:
user
)
}
let
(
:service_desk_issue
)
{
create
(
:issue
,
project:
project
,
title:
'My visible issue'
,
author:
User
.
support_bot
)
}
before
do
before
do
allow
(
License
).
to
receive
(
:feature_available?
).
and_call_original
allow
(
License
).
to
receive
(
:feature_available?
).
and_call_original
allow
(
License
).
to
receive
(
:feature_available?
).
with
(
:service_desk
)
{
true
}
allow
(
License
).
to
receive
(
:feature_available?
).
with
(
:service_desk
)
{
true
}
allow
(
Gitlab
::
IncomingEmail
).
to
receive
(
:enabled?
)
{
true
}
allow
(
Gitlab
::
IncomingEmail
).
to
receive
(
:supports_wildcard?
)
{
true
}
project
.
add_master
(
user
)
project
.
add_master
(
user
)
sign_in
(
user
)
sign_in
(
user
)
...
@@ -30,7 +26,6 @@ describe 'Service Desk Issue Tracker', focus: true do
...
@@ -30,7 +26,6 @@ describe 'Service Desk Issue Tracker', focus: true do
describe
'issues list'
,
js:
true
do
describe
'issues list'
,
js:
true
do
before
do
before
do
puts
service_desk_project_issues_path
(
project
)
visit
service_desk_project_issues_path
(
project
)
visit
service_desk_project_issues_path
(
project
)
end
end
...
@@ -50,6 +45,12 @@ describe 'Service Desk Issue Tracker', focus: true do
...
@@ -50,6 +45,12 @@ describe 'Service Desk Issue Tracker', focus: true do
end
end
end
end
context
'when service desk has been activated'
do
before
do
allow
(
Gitlab
::
IncomingEmail
).
to
receive
(
:enabled?
)
{
true
}
allow
(
Gitlab
::
IncomingEmail
).
to
receive
(
:supports_wildcard?
)
{
true
}
end
context
'when there are no issues'
do
context
'when there are no issues'
do
describe
'service desk info content'
do
describe
'service desk info content'
do
it
'displays the large info box'
do
it
'displays the large info box'
do
...
@@ -71,6 +72,8 @@ describe 'Service Desk Issue Tracker', focus: true do
...
@@ -71,6 +72,8 @@ describe 'Service Desk Issue Tracker', focus: true do
end
end
context
'when there are issues'
do
context
'when there are issues'
do
let
(
:regular_issue
)
{
create
(
:issue
,
project:
project
,
title:
'My invisible issue'
,
author:
user
)
}
let
(
:service_desk_issue
)
{
create
(
:issue
,
project:
project
,
title:
'My visible issue'
,
author:
User
.
support_bot
)
}
describe
'service desk info content'
do
describe
'service desk info content'
do
it
'displays the small info box'
do
it
'displays the small info box'
do
...
@@ -109,4 +112,5 @@ describe 'Service Desk Issue Tracker', focus: true do
...
@@ -109,4 +112,5 @@ describe 'Service Desk Issue Tracker', focus: true do
end
end
end
end
end
end
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