Sha256: cb5dd749b0f3d41d2008c6bb412d80621634b5bea56e98e0045e25d09a738be9
Contents?: true
Size: 713 Bytes
Versions: 2
Compression:
Stored size: 713 Bytes
Contents
require 'spec_helper' require 'support/features/feature_helpers' feature 'visitor has consecutive bad logins' do before(:each) do @user = create(:user) end scenario 'visitor logs in and subsequent click within lifetime' do sign_in_with @user.email, @user.password expect_user_to_be_signed_in Timecop.travel 10.minutes do visit root_path expect_user_to_be_signed_in end end scenario 'visitor logs in and lets session live too long' do sign_in_with @user.email, @user.password expect_user_to_be_signed_in Timecop.travel 21.minutes do visit root_path expect(current_path).to eq sign_in_path expect_user_to_be_signed_out end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
authenticate-0.3.1 | spec/features/max_session_lifetime_spec.rb |
authenticate-0.3.0 | spec/features/max_session_lifetime_spec.rb |