只是试图通过 Michael Hartl 的 Ruby on Rails 教程中第 5 章的最后一点,并在运行 RSpec 测试时遇到另一个错误。
输出是:
静态页面应该在布局上具有正确的链接失败/错误:expect(page).to have_title('About Us') NoMethodError: undefined method
has_title?' for #<Capybara::Session> # ./spec/requests/static_pages_spec.rb:59:in
block (2 levels) in '
并来自static_pages_spec.rb中以下代码中以expect(page)开头的行:
it "should have the right links on the layout" do
visit root_path
click_link "About"
expect(page).to have_title(full_title('About Us'))
end
注意:无论有没有 Spork,都会发生这种情况
谁能指出我正确的方向?
谢谢,巴扎