我正在关注ruby on rails教程。我正在运行自动测试,并且有一个我无法解决的错误。我已经重新检查了我的工作15次,但仍然一切都与视频一字不差。
这是错误。
4 examples, 1 failure
Failed examples:
rspec ./spec/controllers/pages_controller_spec.rb:12 # PagesController GET 'home' should have the right title
这是pages_controller_spec文件https://gist.github.com/4565204和home_html文件https://gist.github.com/4565209
任何人都知道如何修复此错误?由于'home'在这些文件中有正确的标题。
答案 0 :(得分:0)
在第14行中,您应该使用:text而不是:content
response.should have_selector('title', text: '...')