Hi All
With the following route
constraints(:host => "example.com") do
match "(*x)" => redirect { |params, request|
URI.parse(request.url).tap { |x| x.host = "www.example.com" }.to_s
}
end
I am wondering how or where I would spec this?
Ideally I would like to be able to write a routing spec, something like:
get("http://example.com").should route_to(:controller => "home", :action =>
"index", :host => "www.example.com")
Thanks in advance
Shane Mingins
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users