I have added a route to my routes.rb as following,
get “/order/:player_id/:order”, :to => ‘share#order_renderer’, :as =>
:order_feed
It works for me in the app but when I am running the spec file for, it says,
not route matches for this controller, action, parameters.
Since for problems of this type the information required to solve it
is in the detail, please show the exact error (copy/paste it), the
line of code in your test that causes it and also the url you are
using that works (again, copy/paste from browser).
not route matches for this controller, action, parameters.
Since for problems of this type the information required to solve it
is in the detail, please show the exact error (copy/paste it), the
line of code in your test that causes it and also the url you are
using that works (again, copy/paste from browser).
Resolved it. One of the parameters being passed was nil and hence it was
not able to determine the route.
Thanks for the help.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.