我正在关注Micheal Hartl 的 Ruby on rails 教程 2.3 版,并且我正确地遵循了集成测试的步骤。在/sample_app/spec/integration我有一个名为layout_links_spec.rb的文件,它看起来像这样。
require 'spec_helper'
describe "Layout links" do
it "should have a Home page at '/'" do
get '/'
response.should render_template('pages/home')
end
end
当我做
$ spec spec/
我收到以下错误
1)
NoMethodError in 'Layout links should have a Home page at '/''
undefined method `merge' for nil:NilClass
/home/rails_projects/sample_app/spec/integration/layout_links_spec.rb:4:
Finished in 0.060225 seconds
1 example, 1 failure
请帮我解决这个错误