次のrspecルーティング仕様があります:defaults => { :format => 'json' }
が、投稿で指定する必要があります。どうすればいいですか?
仕様:
it "should route to all-locations-nav" do
{:post => locations_nav_path }.should route_to(:controller => "api", :action => "locations_nav")
end
#1を編集
して遊んでみると、次のように修正されています。
it "should route to all-locations-nav" do
{:post => locations_nav_path }.should route_to(:controller => "api", :action => "locations_nav", :format => "json")
end
しかし、これがどこかに文書化されているかどうか興味がありましたか?