Sha256: 607e3cb1bb87c997e206d2f115519097beaadeabe08c20584ec771b4a1e6dff9
Contents?: true
Size: 495 Bytes
Versions: 23
Compression:
Stored size: 495 Bytes
Contents
module Features module SessionHelpers 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 def signin(email, password) visit new_user_session_path fill_in 'Email', with: email fill_in 'Password', with: password click_button 'Sign in' end end end
Version data entries
23 entries across 23 versions & 2 rubygems