Fix rubocop offenses

This commit is contained in:
Douglas Barbosa Alexandre 2016-10-05 23:50:35 -03:00
parent a88ed81fb9
commit 38cece4957
2 changed files with 12 additions and 12 deletions

View file

@ -240,7 +240,7 @@ describe Projects::Boards::ListsController do
end
end
def generate_default_lists(user:, board: board)
def generate_default_lists(user:, board:)
sign_in(user)
post :generate, namespace_id: project.namespace.to_param,

View file

@ -70,21 +70,21 @@ describe Boards::Issues::ListService, services: true do
end
end
context 'with list that does not belongs to the board' do
it 'raises an error' do
list = create(:list)
service = described_class.new(project, user, board_id: board.id, id: list.id)
context 'with list that does not belongs to the board' do
it 'raises an error' do
list = create(:list)
service = described_class.new(project, user, board_id: board.id, id: list.id)
expect { service.execute }.to raise_error(ActiveRecord::RecordNotFound)
end
expect { service.execute }.to raise_error(ActiveRecord::RecordNotFound)
end
end
context 'with invalid list id' do
it 'raises an error' do
service = described_class.new(project, user, board_id: board.id, id: nil)
context 'with invalid list id' do
it 'raises an error' do
service = described_class.new(project, user, board_id: board.id, id: nil)
expect { service.execute }.to raise_error(ActiveRecord::RecordNotFound)
end
expect { service.execute }.to raise_error(ActiveRecord::RecordNotFound)
end
end
end
end