Sha256: 6a78a64b4a36b88d69c4069b386c60800c4e5aa81ae9e9c7ae09391b5a4f3afe
Contents?: true
Size: 1.36 KB
Versions: 18
Compression:
Stored size: 1.36 KB
Contents
module Features module ClearanceHelpers def reset_password_for(email) visit new_password_path fill_in "password_email", with: email click_button I18n.t("helpers.submit.password.submit") end def sign_in password = "password" user = FactoryGirl.create(:user, password: password) sign_in_with user.email, password end def sign_in_with(email, password) visit sign_in_path fill_in "session_email", with: email fill_in "session_password", with: password click_button I18n.t("helpers.submit.session.submit") end def sign_out click_button I18n.t("layouts.application.sign_out") end def sign_up_with(email, password) visit sign_up_path fill_in "user_email", with: email fill_in "user_password", with: password click_button I18n.t("helpers.submit.user.create") end def expect_user_to_be_signed_in visit root_path expect(page).to have_button I18n.t("layouts.application.sign_out") end def expect_user_to_be_signed_out expect(page).to have_content I18n.t("layouts.application.sign_in") end def user_with_reset_password user = FactoryGirl.create(:user) reset_password_for user.email user.reload end end end RSpec.configure do |config| config.include Features::ClearanceHelpers, type: :feature end
Version data entries
18 entries across 18 versions & 1 rubygems