Guest User

Untitled

a guest
Jan 21st, 2018
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. require File.expand_path(File.dirname(__FILE__) + '/acceptance_helper')
  2.  
  3. feature "Login" do
  4.  
  5. scenario "should login the user" do
  6. visit "/login"
  7. page.should have_css("form#login")
  8.  
  9. within "form#login" do
  10. fill_in "user_email", :with => "bob@aol.de"
  11. fill_in "user_password", :with => "ficken"
  12. end
  13. click_button "user_submit"
  14.  
  15. current_path.should == root_path
  16. end
  17. end
Add Comment
Please, Sign In to add comment