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?