RSpec stub helper method in controller spec

江枫思渺然 提交于 2019-12-31 14:16:49

问题


Found similar questions but surprisingly none, that I've found, give a simple answer...

Trying to stub a helper method in my controller spec; not quite sure what object would need to be doubled?

Controller calls this method:

#app/helpers/sessions_helper.rb

def signed_in?
  current_user.present?
end

I'd like to stub it in spec to return true/false.


回答1:


You can stub it from the controller spec:

controller.stub!(:signed_in?).and_return(true) # emulate signed in user
controller.stub!(:signed_in?).and_return(false) # emulate unsigned user

Object 'controller' is predefined in a controller specs.

UPDATE:

With RSpec 3 syntax:

allow(controller).to receive(:signed_in?).and_return(true)
allow(controller).to receive(:signed_in?).and_return(false)

Thanks to @jakeonrails for reminding.



来源:https://stackoverflow.com/questions/14405609/rspec-stub-helper-method-in-controller-spec

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!