Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. test "should get index" do
  2. get teachers_url
  3. assert_response :success
  4. end
  5.  
  6. fill_in "user_email", with: "jdonadob@xxxxx.com"
  7. fill_in "user_password", with: "xxxxxxx"
  8. click_button "Iniciar sesión"
  9.  
  10. class SomeIntegrationTest < ActionDispatch::IntegrationTest
  11. include Devise::Test::IntegrationHelpers
  12.  
  13. def setup
  14. sign_in FactoryBot.create(:user)
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement