demarches-normaliennes/spec/controllers/gestionnaires/sessions_controller_spec.rb

33 lines
873 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Gestionnaires::SessionsController, type: :controller do
before do
@request.env["devise.mapping"] = Devise.mappings[:gestionnaire]
end
describe '.demo' do
2016-12-16 10:59:16 +01:00
subject { get :demo }
context 'when rails env is production' do
before do
allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new("production"))
end
2016-12-16 10:59:16 +01:00
it { is_expected.to redirect_to root_path }
end
context 'when rails env is not production' do
it { expect(subject.status).to eq 200 }
2016-12-16 10:59:16 +01:00
it 'Gestionnaire demo is initiated' do
expect(User).to receive(:new).with(email: 'gestionnaire@apientreprise.fr', password: 'password').and_return(Gestionnaire)
2016-12-16 10:59:16 +01:00
subject
end
end
end
describe '.create' do
it { expect(described_class).to be < Sessions::SessionsController }
end
2017-04-04 15:27:04 +02:00
end