require 'spec_helper' describe Gestionnaires::SessionsController, type: :controller do before do @request.env["devise.mapping"] = Devise.mappings[:gestionnaire] end describe '.demo' do subject { get :demo } render_views context 'when rails env is production' do before do allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new("production")) end it { is_expected.to redirect_to root_path } end context 'when rails env is not production' do it { expect(subject.status).to eq 200 } it 'Gestionnaire demo is initiated' do subject expect(response.body).to have_css("input#user_email[value='gestionnaire@apientreprise.fr']") expect(response.body).to have_css("input#user_password[value='password']") end end end describe '.create' do it { expect(described_class).to be < Sessions::SessionsController } end end