我有一个关于Capybara here干燥内部的问题。汤姆回答得很完美,他在答案中提到:
功能测试应该用于测试系统中较大的行为。
Ruby on Rails中的功能规范和视图规范之间是否存在差异?如果可能请用一些例子解释一下。 谢谢。
答案 0 :(得分:5)
是的,功能和视图规格完全不同。第一个是完整集成测试,第二个是单独测试视图。
功能规范使用无头浏览器从外部测试整个系统,就像用户使用它一样。如果您使用正确的无头浏览器并启用Javascript,它还会运行代码,数据库,视图和Javascript。
与其他类型的rspec-rails规范不同,功能规范是使用feature
和scenario
方法定义的。
功能规格,仅限功能规格,使用Capybara的所有功能,包括visit
,fill_in
和click_button
等方法,以及have_text
等匹配器。
the rspec-rails documentation for feature specs中有很多例子。这是一个快速的:
feature "Questions" do
scenario "User posts a question" do
visit "/questions/ask"
fill_in "title" with "Is there any difference between a feature spec and a view spec?"
fill_in "question" with "I had a question ..."
click_button "Post Your Question"
expect(page).to have_text "Is there any difference between a feature spec and a view spec?"
expect(page).to have_text "I had a question"
end
end
视图规范只是单独呈现视图,模板变量由测试而非控制器提供。
与其他类型的rspec-rails规范一样,视图规范使用describe
和it
方法定义。一个人使用assign
分配模板变量,使用render
呈现视图,并使用rendered
获取结果。
视图规范中使用的唯一Capybara功能是匹配器,如have_text
。
the rspec-rails documentation of view specs中有很多例子。这是一个快速的:
describe "questions/show" do
it "displays the question" do
assign :title, "Is there any difference between a feature spec and a view spec?"
assign :question, "I had a question"
render
expect(rendered).to match /Is there any difference between a feature spec and a view spec\?/
expect(rendered).to match /I had a question/
end
end