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

35 lines
944 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 }
render_views
2016-12-16 10:59:16 +01:00
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
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']")
2016-12-16 10:59:16 +01:00
end
end
end
describe '.create' do
it { expect(described_class).to be < Sessions::SessionsController }
end
2017-04-04 15:27:04 +02:00
end