我正在寻找有关如何使用rspec和rails执行请求规范(我也称之为“集成测试”)的任何文档或参考。
页面here在“请求规范”的自述文件中显示了一个片段,这是我想做的一种测试(完整堆栈测试)。
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。也许我错过了什么。
谢谢!
答案 0 :(得分:2)
have_selector是Webrat的一部分:
http://rubydoc.info/github/brynary/webrat/master/Webrat/Matchers
Capybara提供更多范围的匹配器:
http://rubydoc.info/github/jnicklas/capybara/master/Capybara/Node/Matchers