I am developing an application that with rely heavily on subdomains. It has an application embedded in the application (a module) that will be a backend to administer the application. Let’s name it kong.
I have this code in my routes file:
constraints :subdomain => "kong" do
scope :module => "kong", :as => "kong" do
resources :clients
end
end
How can I test this route so that when I write something like the following it fetches from the subdomain and only from the subdomain:
get :index
In test unit i used something like this to set the request.host to come from a subdomain:
I personally would put that into the
spec_helper.rbfile and reference when you need.For you, in those tests, you’re setting
subto equal"kong"probably likeThis joker also has an answer too, which i found after through google