I want to test my controllers with minitest but : - I use custom routing only - I don't use named routes
I have some routes like this :
scope "administration" do
get '', to: 'administration#index'
get 'user/:id/update/', to: 'user#update'
end
scope "front" do
get 'user/show', to: 'user#show'
end
Is there a way to test a request with full url (get "/administration/user/2/update/" for example)?