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
ff72de88
Commit
ff72de88
authored
Jun 26, 2017
by
http://jneen.net/
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove use of deprecated webmock feature in jira specs
parent
c8dfdfcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
jira_service_spec.rb
spec/features/projects/services/jira_service_spec.rb
+7
-7
No files found.
spec/features/projects/services/jira_service_spec.rb
View file @
ff72de88
...
@@ -6,7 +6,11 @@ feature 'Setup Jira service', :feature, :js do
...
@@ -6,7 +6,11 @@ feature 'Setup Jira service', :feature, :js do
let
(
:service
)
{
project
.
create_jira_service
}
let
(
:service
)
{
project
.
create_jira_service
}
let
(
:url
)
{
'http://jira.example.com'
}
let
(
:url
)
{
'http://jira.example.com'
}
let
(
:project_url
)
{
'http://username:password@jira.example.com/rest/api/2/project/GitLabProject'
}
def
stub_project_url
WebMock
.
stub_request
(
:get
,
'http://jira.example.com/rest/api/2/project/GitLabProject'
)
.
with
(
basic_auth:
%w(username password)
)
end
def
fill_form
(
active
=
true
)
def
fill_form
(
active
=
true
)
check
'Active'
if
active
check
'Active'
if
active
...
@@ -27,9 +31,7 @@ feature 'Setup Jira service', :feature, :js do
...
@@ -27,9 +31,7 @@ feature 'Setup Jira service', :feature, :js do
describe
'user sets and activates Jira Service'
do
describe
'user sets and activates Jira Service'
do
context
'when Jira connection test succeeds'
do
context
'when Jira connection test succeeds'
do
before
do
before
{
stub_project_url
}
WebMock
.
stub_request
(
:get
,
project_url
)
end
it
'activates the JIRA service'
do
it
'activates the JIRA service'
do
click_link
(
'JIRA'
)
click_link
(
'JIRA'
)
...
@@ -43,9 +45,7 @@ feature 'Setup Jira service', :feature, :js do
...
@@ -43,9 +45,7 @@ feature 'Setup Jira service', :feature, :js do
end
end
context
'when Jira connection test fails'
do
context
'when Jira connection test fails'
do
before
do
before
{
stub_project_url
.
to_return
(
status:
401
)
}
WebMock
.
stub_request
(
:get
,
project_url
).
to_return
(
status:
401
)
end
it
'shows errors when some required fields are not filled in'
do
it
'shows errors when some required fields are not filled in'
do
click_link
(
'JIRA'
)
click_link
(
'JIRA'
)
...
...
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