我有一个像这样的描述块:
describe "Documents" do
subject { page }
let (:course) { FactoryGirl.create(:course) }
describe "new" do
before do
visit new_course_document_path(course)
fill_in "Name", with: "TestDocument"
attach_file "Original document", "#{Rails.root}/spec/fixtures/03_GUI_concurrency.pdf"
end
it { should have_selector('title', text:"Upload document")}
it { should have_selector('h1', text:"Upload document")}
describe "when clicking upload" do
before { click_button "Upload Document" }
it "should have the document name" do
subject.should have_selector('p', text: "TestDocument")
end
it "should have 22 pages" do
subject.should have_selector('.page', count: 22)
end
describe "when visiting the course page" do
before { visit course_path(course) }
it { should have_selector 'li', text: "TestDocument"}
end
end
end
由于在保存文档方面做了大量工作,因此测试非常昂贵。这很好,但它甚至更慢,因为它实际上上传了3次。因此,显而易见的事情是将之前的块放入:所有块 - 但是当我这样做时,只有第一块{}块被正确执行而后面的块正在空页面上执行,因此它们会失败。 / p>
以前:所有的块都应该和水豚一起工作,如果是的话,我在这里做错了什么?
答案 0 :(得分:5)
Capybara resets session,所以当您将visit new_course_document_path(course)
移到before (:all)
区块时,从第二个示例开始,您无需访问任何内容。
我建议只运行您正在进行的测试。这可以通过RSpec tag option或guard-rspec来实现,它可以为您节省很多时间。