demarches-normaliennes/spec/controllers/instructeurs/instructeur_controller_spec.rb
2019-08-12 13:47:01 +02:00

14 lines
465 B
Ruby

require 'spec_helper'
describe Instructeurs::InstructeurController, type: :controller do
describe 'before actions: authenticate_instructeur!' do
it 'is present' do
before_actions = Instructeurs::InstructeurController
._process_action_callbacks
.find_all { |process_action_callbacks| process_action_callbacks.kind == :before }
.map(&:filter)
expect(before_actions).to include(:authenticate_instructeur!)
end
end
end