user_signed_in?
在将 Devise 的方法添加到有问题的视图模板后,我试图让之前通过的 rspec“视图规范”通过。模板看起来像这样:
<% 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)>'
网络上有很多关于这个错误的引用,但我还没有找到一个足够描述性的答案,我可以让我的测试再次通过。我相信这个问题与没有一些关键的设计基础设施可用的视图(正在与任何模型/控制器隔离测试)有关。感谢您的建议。
另外,一旦测试通过,我将如何测试其他路径(用户已经登录)?我想它会非常相似。谢谢。