この問題についてかなり深く掘り下げた後、ドキュメントの理解と結果の間で行き詰まりに陥りました。
https://www.relishapp.com/rspec/rspec-rails/v/2-8/docs/routing-specs/route-to-matcherによると、次のように記述できるはずです。
#rspec-rails (2.8.1)
#rspec (>= 1.3.1)
#rspec-core (~> 2.8.0)
# routing spec
require "spec_helper"
describe BusinessUsersController do
describe "routing" do
it "routes to some external url" do
get("/business_users/7/external_url").should route_to("http://www.google.com")
end
end
end
# routes.rb
BizeebeeBilling::Application.routes.draw do
resources :business_users do
member do
get "external_url" => redirect("http://www.google.com")
end
end
end
この仕様を実行すると、次の結果が生成されます。
1) BusinessUsersController routing routes to some external url
Failure/Error: assert_routing "/business_users/7/external_url", "http://www.google.com"
ActionController::RoutingError:
No route matches "/business_users/7/external_url"
# ./spec/routing/business_users_routing_spec.rb:19:in `block (3 levels) in <top (required)>'
この特定の問題をどこにも報告している人を見つけることができませんでした。
詳細を追加: 手動でテストすると、ルートは完全に解決されます。