Guest User

Untitled

a guest
Nov 2nd, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. describe "Login" do
  2. it "shows login page", js: true do
  3. visit login_path
  4. fill_in 'username', with: 'hello'
  5. fill_in 'password', with: 'password'
  6. click_button 'Sign in'
  7. expect(page).to have_content 'Success'
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment