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
22c983d7
Commit
22c983d7
authored
Feb 16, 2017
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix rubocop offenses
parent
a4b2e90e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
lib/api/helpers/ci.rb
lib/api/helpers/ci.rb
+3
-4
spec/requests/api/ci_spec.rb
spec/requests/api/ci_spec.rb
+8
-8
No files found.
lib/api/helpers/ci.rb
View file @
22c983d7
...
@@ -2,8 +2,7 @@ module API
...
@@ -2,8 +2,7 @@ module API
module
Helpers
module
Helpers
module
Ci
module
Ci
def
runner_registration_token_valid?
def
runner_registration_token_valid?
ActiveSupport
::
SecurityUtils
.
variable_size_secure_compare
(
ActiveSupport
::
SecurityUtils
.
variable_size_secure_compare
(
params
[
:token
],
params
[
:token
],
current_application_settings
.
runners_registration_token
)
current_application_settings
.
runners_registration_token
)
end
end
...
...
spec/requests/api/ci_spec.rb
View file @
22c983d7
...
@@ -110,7 +110,7 @@ describe API::Ci do
...
@@ -110,7 +110,7 @@ describe API::Ci do
it
%q(updates provided Runner's parameter)
do
it
%q(updates provided Runner's parameter)
do
post
api
(
'/runners'
),
token:
registration_token
,
post
api
(
'/runners'
),
token:
registration_token
,
info:
{
param
=>
value
}
info:
{
param
=>
value
}
expect
(
response
).
to
have_http_status
201
expect
(
response
).
to
have_http_status
201
expect
(
Ci
::
Runner
.
first
.
read_attribute
(
param
.
to_sym
)).
to
eq
(
value
)
expect
(
Ci
::
Runner
.
first
.
read_attribute
(
param
.
to_sym
)).
to
eq
(
value
)
...
...
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