Apply automatic rubocop fixes

This commit is contained in:
Sebastian Serth
2021-05-14 10:51:44 +02:00
parent fe4000916c
commit 6cbecb5b39
440 changed files with 2705 additions and 1853 deletions

View File

@ -1,12 +1,15 @@
# frozen_string_literal: true
require 'rails_helper'
describe ExternalUsersController do
let(:user) { FactoryBot.build(:admin) }
let!(:users) { FactoryBot.create_pair(:external_user) }
before(:each) { allow(controller).to receive(:current_user).and_return(user) }
before { allow(controller).to receive(:current_user).and_return(user) }
describe 'GET #index' do
before(:each) { get :index }
before { get :index }
expect_assigns(users: ExternalUser.all)
expect_status(200)
@ -14,7 +17,7 @@ describe ExternalUsersController do
end
describe 'GET #show' do
before(:each) { get :show, params: { id: users.first.id } }
before { get :show, params: {id: users.first.id} }
expect_assigns(user: ExternalUser)
expect_status(200)