我正在寻找有关如何使用 rspec 和 rails 进行请求规范(我也见过称为“集成测试”)的任何文档或参考。
这里的页面显示了“请求规范”自述文件中的一个片段,这是我想做的那种测试(全栈测试)。
describe "widgets resource" do
describe "GET index" do
it "contains the widgets header" do
get "/widgets/index"
response.should have_selector("h1", :content => "Widgets")
end
end
end
这种测试风格中使用的所有方法是否有参考,例如如何使用夹具、cookie、会话、重定向等?
实际上,have_selector
上面使用的方法甚至还有 rdoc 吗?我无法为此找到 API 或 rdoc。也许我错过了一些东西。
谢谢!