Sha256: d0083467cf3ab65188de3aa0f93f1db4e137dc97cd4e7c40e5598e30062447eb
Contents?: true
Size: 1.77 KB
Versions: 3
Compression:
Stored size: 1.77 KB
Contents
require 'spec_helper' describe 'Session overview' do include CASino::Engine.routes.url_helpers subject { page } context 'when logged in' do let(:login_attempt) do FactoryGirl.create :login_attempt, created_at: Time.zone.parse('2015-01-01 09:10'), user: CASino::User.first end before do sign_in login_attempt.touch visit sessions_path end it { should have_link('Logout', href: logout_path) } it { should have_text('Your Active Sessions') } it { should have_text('Active Session') } context 'without other sessions' do it { should_not have_button('End session') } end context 'with login attempts' do it { should have_text('TestBrowser') } it { should have_text('133.133.133.133') } it { should have_text('2015-01-01 09:10') } end context 'when other sessions exist' do before do in_browser(:other) do sign_in end visit sessions_path end it { should have_button('End session') } end context 'with two-factor authentication disabled' do before do in_browser(:other) do sign_in end visit sessions_path end it { should have_link('Enable', href: new_two_factor_authenticator_path) } it { should_not have_button('Disable') } end context 'with two-factor authentication enabled' do before { enable_two_factor_authentication } it { should_not have_link('Enable', href: new_two_factor_authenticator_path) } it { should have_button('Disable') } end end context 'when not logged in' do before { visit sessions_path } it { should have_button('Login') } its(:current_path) { should == login_path } end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
casino-4.1.2 | spec/features/session_overview_spec.rb |
casino-4.1.1 | spec/features/session_overview_spec.rb |
casino-4.1.0 | spec/features/session_overview_spec.rb |