Guest User

Untitled

a guest
Nov 20th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. require 'spec_helper'
  2.  
  3. describe DeviseController do
  4.  
  5. it 'signs up Drivers correctly' do
  6. visit '/drivers/sign_up'
  7. p page.html
  8. fill_in 'Email', with: 'snoo@bloo.com'
  9. fill_in 'Password', with: 'correct horse battery staple'
  10. fill_in 'Password Confirmation', with: 'correct horse battery staple'
  11. click_button 'Sign up'
  12.  
  13. end
  14. end
Add Comment
Please, Sign In to add comment