我试图让以前通过rspec的“视图规范”增加设计的后传user_signed_in?
方法所讨论的视图模板。 模板看起来是这样的:
<% if user_signed_in? %>
Welcome back.
<% else %>
Please sign in.
<% endif %>
这是通过视图规格看起来是这样的:
require "spec_helper"
describe "home/index.html.erb" do
it "asks you to sign in if you are not signed in" do
render
rendered.should have_content('Please sign in.')
end
end
它添加了调用后产生错误user_signed_in?
是:
1) home/index.html.erb asks you to sign in if you are not signed in
Failure/Error: render
ActionView::Template::Error:
undefined method `authenticate' for nil:NilClass
# ./app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__1932916999377371771_70268384974540'
# ./spec/views/home/index.html.erb_spec.rb:6:in `block (2 levels) in <top (required)>'
有很多在网络上此错误引用,但我还没有找到足够的描述,我可以得到我的测试再次通过一个答案。 我相信这个问题有事情做与视图(其正从任何型号/控制器隔离测试)没有提供的一些关键设计的基础设施。 您的建议表示赞赏。
此外,一旦测试通过,我将如何测试其他路径(用户已登录)? 我相信这将是非常相似的。 谢谢。