作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 authlogic 进行用户身份验证,在我的 ApplicationController 中,我定义了“current_user”、“current_user_session”等并将其设置为 helper_methods。
我的主索引有一个非常简单的 View 规范:
RSpec.describe "main/index.html.erb", :type => :view do
context "when not logged in" do
before do
allow(view).to receive(:current_user).and_return(nil)
end
it "has an h1" do
render
expect(rendered).to include('h1')
end
end
end
1) main/index.html.erb when not logged in has an h1
Failure/Error: allow(view).to receive(:current_user).and_return(nil)
#<#<Class:0x00000104c249d0>:.........
@rendered_views={}>> does not implement: current_user
helper_method :current_user, ...
def current_user
return @current_user if defined?(@current_user)
@current_user = current_user_session && current_user_session.record
end
最佳答案
这是一个已知问题,使其工作的唯一方法是将方法提取到模块中并将其包含在您的 View 助手和 Controller 中。
更多信息请访问:https://github.com/rspec/rspec-rails/issues/1076
关于ruby-on-rails-4 - 使用 rails 4 和 rspec 3 被 verify_partial_doubles 绊倒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25788842/
我的项目在 rspec_helper.rb 文件中设置了这个值 mocks.verify_partial_doubles = true 我有一个被标记的测试 TaskPublisher does n
我正在使用 authlogic 进行用户身份验证,在我的 ApplicationController 中,我定义了“current_user”、“current_user_session”等并将其设置
我是一名优秀的程序员,十分优秀!