module Features::SessionHelpers

Public Instance Methods

sign_up_with(email, password, confirmation) click to toggle source
# File lib/generators/testing/configure/templates/spec/devise/support/helpers/session_helpers.rb, line 3
def sign_up_with(email, password, confirmation)
  visit new_user_registration_path
  fill_in 'Email', with: email
  fill_in 'Password', with: password
  fill_in 'Password confirmation', :with => confirmation
  click_button 'Sign up'
end
signin(email, password) click to toggle source
# File lib/generators/testing/configure/templates/spec/devise/support/helpers/session_helpers.rb, line 11
def signin(email, password)
  visit new_user_session_path
  fill_in 'Email', with: email
  fill_in 'Password', with: password
  click_button 'Sign in'
end