0

我正在关注 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

任何人都知道我该如何解决这个错误?因为“家”在这些文件中有正确的标题。

4

1 回答 1

0

在第 14 行中,您应该使用 :text 而不是 :content

response.should have_selector('title', text: '...')
于 2013-01-18T15:49:42.733 回答