Fix rubocop anger

This commit is contained in:
Shinya Maeda 2017-03-07 00:42:39 +09:00
parent 617292046c
commit f8d6e81b92
5 changed files with 14 additions and 14 deletions

View File

@ -2,7 +2,7 @@ class BuildSerializer < BaseSerializer
entity BuildEntity
def with_status
tap { @status_only = {only: [{details: [:status]}]} }
tap { @status_only = { only: [{ details: [:status] }] } }
end
def represent(resource, opts = {})

View File

@ -12,7 +12,7 @@ class PipelineSerializer < BaseSerializer
end
def with_status
tap { @status_only = {only: [{details: [:status]}]} }
tap { @status_only = { only: [{ details: [:status] }] } }
end
def represent(resource, opts = {})

View File

@ -16,9 +16,9 @@ describe Projects::BuildsController do
pipeline = create(:ci_pipeline, project: project)
build = create(:ci_build, pipeline: pipeline, status: 'success')
get :status, namespace_id: project.namespace,
project_id: project,
id: build.id,
format: :json
project_id: project,
id: build.id,
format: :json
end
it 'returns pipeline status via BuildSerializer' do

View File

@ -1183,13 +1183,13 @@ describe Projects::MergeRequestsController do
context 'when accessing status' do
before do
create(:ci_pipeline, project: merge_request.source_project,
ref: merge_request.source_branch,
sha: merge_request.diff_head_sha,
status: 'success')
ref: merge_request.source_branch,
sha: merge_request.diff_head_sha,
status: 'success')
get :status, namespace_id: project.namespace,
project_id: project,
id: merge_request.iid,
format: :json
project_id: project,
id: merge_request.iid,
format: :json
end
it 'returns pipeline status via PipelineSerializer' do

View File

@ -75,9 +75,9 @@ describe Projects::PipelinesController do
before do
pipeline = create(:ci_pipeline, project: project, status: 'success')
get :status, namespace_id: project.namespace,
project_id: project,
id: pipeline.id,
format: :json
project_id: project,
id: pipeline.id,
format: :json
end
it 'returns pipeline status via PipelineSerializer' do