Fix rubocop offenses

上级 a4b2e90e
......@@ -2,9 +2,8 @@ module API
module Helpers
module Ci
def runner_registration_token_valid?
ActiveSupport::SecurityUtils.variable_size_secure_compare(
params[:token],
current_application_settings.runners_registration_token)
ActiveSupport::SecurityUtils.variable_size_secure_compare(params[:token],
current_application_settings.runners_registration_token)
end
def get_runner_version_from_params
......@@ -21,4 +20,4 @@ module API
end
end
end
end
\ No newline at end of file
end
......@@ -54,7 +54,7 @@ describe API::Ci do
context 'when runner description is provided' do
it 'creates runner' do
post api('/runners'), token: registration_token,
description: 'server.hostname'
description: 'server.hostname'
expect(response).to have_http_status 201
expect(Ci::Runner.first.description).to eq('server.hostname')
......@@ -64,7 +64,7 @@ describe API::Ci do
context 'when runner tags are provided' do
it 'creates runner' do
post api('/runners'), token: registration_token,
tag_list: 'tag1, tag2'
tag_list: 'tag1, tag2'
expect(response).to have_http_status 201
expect(Ci::Runner.first.tag_list.sort).to eq(%w(tag1 tag2))
......@@ -75,8 +75,8 @@ describe API::Ci do
context 'when tags are provided' do
it 'creates runner' do
post api('/runners'), token: registration_token,
run_untagged: false,
tag_list: ['tag']
run_untagged: false,
tag_list: ['tag']
expect(response).to have_http_status 201
expect(Ci::Runner.first.run_untagged).to be false
......@@ -87,7 +87,7 @@ describe API::Ci do
context 'when tags are not provided' do
it 'returns 404 error' do
post api('/runners'), token: registration_token,
run_untagged: false
run_untagged: false
expect(response).to have_http_status 404
end
......@@ -97,7 +97,7 @@ describe API::Ci do
context 'when option for locking Runner is provided' do
it 'creates runner' do
post api('/runners'), token: registration_token,
locked: true
locked: true
expect(response).to have_http_status 201
expect(Ci::Runner.first.locked).to be true
......@@ -110,7 +110,7 @@ describe API::Ci do
it %q(updates provided Runner's parameter) do
post api('/runners'), token: registration_token,
info: {param => value}
info: { param => value }
expect(response).to have_http_status 201
expect(Ci::Runner.first.read_attribute(param.to_sym)).to eq(value)
......@@ -145,4 +145,4 @@ describe API::Ci do
end
end
end
end
\ No newline at end of file
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册