demarches-normaliennes/spec/support/controller_helpers.rb
2015-08-10 11:05:06 +02:00

16 lines
No EOL
608 B
Ruby

module ControllerHelpers
def sign_in(user = double('test@localhost.com'))
if user.nil?
allow(request.env['warden']).to receive(:authenticate!).and_throw(:warden, {:scope => :user})
allow(controller).to receive(:current_user).and_return(nil)
else
allow(request.env['warden']).to receive(:authenticate!).and_return(user)
allow(controller).to receive(:current_user).and_return({:email => 'test@localhost.com'})
end
end
end
RSpec.configure do |config|
config.include Devise::TestHelpers, :type => :controller
config.include ControllerHelpers, :type => :controller
end