我找不到任何解释如何在 Rails 3 中测试路线的内容。即使在Rspec书中,它也没有很好地解释。
谢谢
在 rspec-rails Github 网站上有一个简短的例子。您还可以使用脚手架生成器来生成一些罐装示例。例如
rails g scaffold Article
应该产生这样的东西:
require "spec_helper"
describe ArticlesController do
describe "routing" do
it "routes to #index" do
get("/articles").should route_to("articles#index")
end
it "routes to #new" do
get("/articles/new").should route_to("articles#new")
end
it "routes to #show" do
get("/articles/1").should route_to("articles#show", :id => "1")
end
it "routes to #edit" do
get("/articles/1/edit").should route_to("articles#edit", :id => "1")
end
it "routes to #create" do
post("/articles").should route_to("articles#create")
end
it "routes to #update" do
put("/articles/1").should route_to("articles#update", :id => "1")
end
it "routes to #destroy" do
delete("/articles/1").should route_to("articles#destroy", :id => "1")
end
end
end
Zetetic的回答解释了如何测试路由。这个答案解释了为什么你不应该这样做。
通常,测试应测试向用户(或客户端对象)公开的行为,而不是提供该行为的实现。路由是面向用户的:当用户输入 http://www.mysite.com/profile
时,他不在乎它是否转到配置文件控制器;相反,他关心的是他看到他的个人资料。
所以不要测试你要去配置文件控制器。相反,设置一个黄瓜场景来测试当用户转到/profile
时,他会看到他的姓名和个人资料信息。这就是您所需要的。
再说一遍:不要测试你的路线。测试您的行为。