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
9fc19492
Commit
9fc19492
authored
Feb 26, 2018
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust the API issues move spec to use project ID 0
Closes #43631
parent
cce53020
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
issues_spec.rb
spec/requests/api/issues_spec.rb
+2
-2
issues_spec.rb
spec/requests/api/v3/issues_spec.rb
+2
-2
No files found.
spec/requests/api/issues_spec.rb
View file @
9fc19492
...
...
@@ -1417,7 +1417,7 @@ describe API::Issues do
context
'when source project does not exist'
do
it
'returns 404 when trying to move an issue'
do
post
api
(
"/projects/
12345
/issues/
#{
issue
.
iid
}
/move"
,
user
),
post
api
(
"/projects/
0
/issues/
#{
issue
.
iid
}
/move"
,
user
),
to_project_id:
target_project
.
id
expect
(
response
).
to
have_gitlab_http_status
(
404
)
...
...
@@ -1428,7 +1428,7 @@ describe API::Issues do
context
'when target project does not exist'
do
it
'returns 404 when trying to move an issue'
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
iid
}
/move"
,
user
),
to_project_id:
12345
to_project_id:
0
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
...
...
spec/requests/api/v3/issues_spec.rb
View file @
9fc19492
...
...
@@ -1218,7 +1218,7 @@ describe API::V3::Issues do
context
'when source project does not exist'
do
it
'returns 404 when trying to move an issue'
do
post
v3_api
(
"/projects/
123
/issues/
#{
issue
.
id
}
/move"
,
user
),
post
v3_api
(
"/projects/
0
/issues/
#{
issue
.
id
}
/move"
,
user
),
to_project_id:
target_project
.
id
expect
(
response
).
to
have_gitlab_http_status
(
404
)
...
...
@@ -1229,7 +1229,7 @@ describe API::V3::Issues do
context
'when target project does not exist'
do
it
'returns 404 when trying to move an issue'
do
post
v3_api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/move"
,
user
),
to_project_id:
123
to_project_id:
0
expect
(
response
).
to
have_gitlab_http_status
(
404
)
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