本業があるので手短に。ちょこちょこ変わっていたのではまったポイントを。 rspec-rails 1.2.2 ルーティング周りのexampleの書き方が変わっていた。routes_for(url_params)のほう idなんかもStringで指定する必要あり it "should map #show in rspec-rails 1.1.x" do route_for(:controller => "blogs", :action => "show", :id => 1).should == "/blogs/1" end it "should map #show in rspec-rails 1.2.x" do route_for(:controller => "blogs", :action => "show", :id => "1").should == "/blogs/1" end