Sha256: 1fd4302582df900c01244d6e1199c19b19dadbb38b539955cb5e2251667e8b37
Contents?: true
Size: 1.56 KB
Versions: 5
Compression:
Stored size: 1.56 KB
Contents
RSpec.feature 'Sign In', type: :feature do background do @user = create(:user, email: 'email@person.com', password: 'secret', password_confirmation: 'secret') visit spree.login_path end scenario 'ask user to sign in' do visit spree.admin_path expect(page).not_to have_text 'Authorization Failure' end scenario 'let a user sign in successfully' do fill_in 'Email', with: @user.email fill_in 'Password', with: @user.password click_button 'Login' expect(page).to have_text 'Logged in successfully' expect(page).not_to have_text 'Login' expect(page).to have_text 'Logout' expect(current_path).to eq '/' end scenario 'show validation erros' do fill_in 'Email', with: @user.email fill_in 'Password', with: 'wrong_password' click_button 'Login' expect(page).to have_text 'Invalid email or password' expect(page).to have_text 'Login' end scenario 'allow a user to access a restricted page after logging in' do user = create(:admin_user, email: 'admin@person.com', password: 'password', password_confirmation: 'password') visit spree.admin_path fill_in 'Email', with: user.email fill_in 'Password', with: user.password click_button 'Login' expect(page).to have_text 'Logged in as: admin@person.com' expect(current_path).to eq '/admin/orders' end it "should store the user previous location" do visit spree.account_path fill_in "Email", with: @user.email fill_in "Password", with: @user.password click_button "Login" expect(current_path).to eq "/account" end end
Version data entries
5 entries across 5 versions & 1 rubygems