Fix rubocop errors [ci skip]

This commit is contained in:
Z.J. van de Weg 2016-12-20 20:11:02 +01:00
parent e9c14918e5
commit 2393d30da2
4 changed files with 7 additions and 8 deletions

View File

@ -24,13 +24,13 @@ class MattermostSlashCommandsService < ChatSlashCommandsService
create(command(params))
update(active: true, token: token) if token
rescue => Mattermost::Error => e
false, e.message
rescue Mattermost::Error => e
[false, e.message]
end
def list_teams(user)
Mattermost::Team.new(user).all
rescue => Mattermost::Error => e
rescue Mattermost::Error
[]
end

View File

@ -34,7 +34,7 @@ module Mattermost
end
json_response
rescue JSON::JSONError => e
rescue JSON::JSONError
raise ClientError('Cannot parse response')
end
end

View File

@ -41,7 +41,6 @@ feature 'Setup Mattermost slash commands', feature: true do
end
end
describe 'mattermost service is not enabled' do
before do
allow(Gitlab.config.mattermost).to receive(:enabled).and_return(false)

View File

@ -10,13 +10,13 @@ describe MattermostSlashCommandsService, :models do
before do
allow_any_instance_of(Mattermost::Session).to
receive(:with_session).and_yield
receive(:with_session).and_yield
end
subject do
service.configure!(user, team_id: 'abc',
trigger: 'gitlab', url: 'http://trigger.url',
icon_url: 'http://icon.url/icon.png')
trigger: 'gitlab', url: 'http://trigger.url',
icon_url: 'http://icon.url/icon.png')
end
context 'the requests succeeds' do