I am using lvh.me:3000 which redirects to localhost, and allows me to have wildcards like:
test.lvh.me:3000
In my application_controller, I make sure there is a subdomain in the url, and looking the subdomain in the database also.
If there is no subdomain, I redirect to an error page.
Because of this, my rspec controller tests are failing because the tests don't have a subdomain.
How can I make the get 'index' calls to use a subdomain that I know exists in the test db?