Tagged Questions
0
votes
2answers
76 views
Not getting a [:id] prameter from url, Default route is not working
When I request a URL as follows :
http://localhost:3000/password_resets/edit/4RghIKJNygEDswIuuCo
I'm not getting the [:id] parameter, i.e. 4RghIKJNygEDswIuuCo.
Here is my route file, are there any ...
1
vote
1answer
137 views
URL parameter in the URL itself instead of after ? in Rails
I have the following line in the routes:
match 'area/:area_id/stores', :to => "stores_directory#index", :as => "stores_directory"
I have a form where I can select an area_id as:
<%= ...
0
votes
0answers
78 views
Form not adding parameters in GET submission in production in Rails
I have a form like this:
<%= form_tag how_it_works_path, :method=>:get do %>
<fieldset>
<select id="location" name="location">
...
1
vote
1answer
669 views
How do you test the params hash in a Rails test?
The following generates an error: "undefined local variable or method `params'"
assert_equal params[:recipient_id], users(:one).id
How do you test the params hash?
Also, how do you test ...