Guest User

Untitled

a guest
Jan 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. 1) Users::ConfirmationsController signed-up should render correct template
  2. Failure/Error: get "users/signed-up"
  3. ActionController::RoutingError:
  4. No route matches {:controller=>"users/confirmations", :action=>"users/signed-up"}
  5. # ./spec/controllers/confirmations_controller_spec.rb:24:in `block (3 levels) in <top (required)>'
  6.  
  7. # so then I change the route to:
  8. get "signed-up", :to => "users/confirmations#signedup", :as => "signedup_registration"
  9.  
  10. and get the same error
Add Comment
Please, Sign In to add comment