I have the following (nested) route:

folder_files GET /folders/:folder_id/files(.:format) {:action=>"index", :controller=>"files"}

In FilesControllerTest < ActionController::TestCase, I run:

get :index, :folder_id => 1

It looks like @request.fullpath = "/files?folder_id=1", but since files are nested within folders, I expected "/folders/1/files" instead. How do I move the query param to the path?

link|improve this question

60% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.