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
7a68f970
Commit
7a68f970
authored
Aug 02, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix fixture path in runner spec
parent
8e0558ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/requests/api/runner_spec.rb
spec/requests/api/runner_spec.rb
+2
-2
No files found.
spec/requests/api/runner_spec.rb
View file @
7a68f970
...
...
@@ -1449,7 +1449,7 @@ describe API::Runner, :clean_gitlab_redis_shared_state do
context
'when artifact_type is junit'
do
context
'when artifact_format is gzip'
do
let
(
:file_upload
)
{
fixture_file_upload
(
'spec/fixtures/junit.xml.gz'
)
}
let
(
:file_upload
)
{
fixture_file_upload
(
'spec/fixtures/junit
/junit
.xml.gz'
)
}
let
(
:params
)
{
{
artifact_type: :junit
,
artifact_format: :gzip
}
}
it
'stores junit test report'
do
...
...
@@ -1461,7 +1461,7 @@ describe API::Runner, :clean_gitlab_redis_shared_state do
end
context
'when artifact_format is raw'
do
let
(
:file_upload
)
{
fixture_file_upload
(
'spec/fixtures/junit.xml.gz'
)
}
let
(
:file_upload
)
{
fixture_file_upload
(
'spec/fixtures/junit
/junit
.xml.gz'
)
}
let
(
:params
)
{
{
artifact_type: :junit
,
artifact_format: :raw
}
}
it
'returns an error'
do
...
...
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