My helper code looks like this (and works fine btw):

module ProvidersHelper
  def call_to_review(provider)
    if user_signed_in? && review = Review.find_by_provider_id_and_user_id(provider.id, current_user.id)
      link_to "Edit Your Review", edit_provider_review_path(provider, review), :class => "call_to_review"
    else
      link_to "Review This Provider", new_provider_review_path(provider), :class => "call_to_review"
    end
  end
end

Unfortunately, this produces the following error when I run my tests:

 undefined method `user_signed_in?' for #<ActionView::Base:0x00000106314640>
 # ./app/helpers/providers_helper.rb:3:in `call_to_review'

Clearly the Devise::Controllers::Helpers are not being included in my helpers when rspec is running the test. Any suggestions that might help this work?

Edit: to provide a bit more information, my spec_helper does have this:

config.include Devise::TestHelpers, :type => :controller
config.include Devise::TestHelpers, :type => :view
config.include Devise::TestHelpers, :type => :helper

(Sadly, I couldn't get it to work with :type => [:controller, :view, :helper])

Anyway I believe that these lines add the sign_in(scope, object) (and other) test helpers to your tests. They don't add the helpers that you would actually leverage in your controller / view code.

link|improve this question

11% accept rate
I'm having this problem too. I'm very interested in the answer. Things like 'current_user' don't exist when I run the test. It's probably the same issue that you are having. This is the one thing I don't like about dynamic languages - sometimes there's a lot of metaprogramming and 'magic' going on... and you have no idea what you need to call to get the desired result... so you end up wasting an hour of time looking for the method to call to make a test pass, thus defeating the productivity benefits of using the dynamic language in the first place :/ – egervari May 21 '11 at 2:50
Here is another example of this problem: NameError: undefined local variable or method `current_user' for #<RSpec::Core::ExampleGroup::Nested_1:0x00000005f80890> – egervari May 21 '11 at 2:56
I started a bounty for your question. I hope the person who answer also solves my problem at the same time. – egervari May 21 '11 at 4:35
Something you can do in the meantime is add "user_signed_in?" method into the test helper itself. Yes, you are duplicating functionality that is SUPPOSED to be provided, but it will work. – egervari May 21 '11 at 13:06
feedback

3 Answers

I think the philosophy of rspec is to test the view/helpers/models in total isolation as much as possible. So in this case, i would stub out the user_signed_in? and returns false or true and my results should change appropriately. This gives you a clean isolated test.

link|improve this answer
This is pretty much the only answer I could come up with... but why does this work for controllers then? If Rspec wants us to stub these out... then why are they provided with controller tests but not helpers? Is this just a bug? :/ – egervari May 21 '11 at 21:22
Controllers could be used for integration testing, so that's why (I guess) a more complete loop is possible. So in the controller tests, i include the Devise::TestHelpers and there it just works. Inside your controllers specs, you could also render the views (which in general I do not do --most of the times I even tend to stub out all ActiveRecord access), so the views/helpers/... should work there. – nathanvda May 22 '11 at 13:46
How does one stub these out in a helper spec? The few variations I tired didn't work. Do the stubs go in a before block? Do you stub them off the helper object? – Chrisbloom7 Nov 29 '11 at 22:09
Could you ask this in a separate question? Then you can add the code you want to test, and how you tried to do that. A bit easier to discuss then. – nathanvda Nov 30 '11 at 9:28
feedback

Are you currently including the test Helpers as suggested in the wiki?

# spec_helper.rb:
RSpec.configure do |config|
  config.include Devise::TestHelpers, :type => :controller
end

type would be probably helper in your case.

link|improve this answer
Yes, sorry I forgot to mention that. From my spec_helper.rb: config.include Devise::TestHelpers, :type => :helper – steve Jan 12 '11 at 1:40
I don't believe this will fix it. I am having the same problem. The problem is that references to 'current_user' and the like inside of the helper still don't exist when you run the test. – egervari May 21 '11 at 2:49
feedback

Maybe try putting this is in a before block?

  @request.env["devise.mapping"] = :user
link|improve this answer
That has no effect for me :( Try making a helper test where a helper method just returns "current_user". If you can get this test to pass, I am sure it would solve my problem and his problem. I can't figure it out. – egervari May 21 '11 at 5:41
adding 'def current_user { @user } seems to solve my issue, but it seems kind of redundant to mock the methods that devise is supposed to provide on your behalf :/ – egervari May 21 '11 at 6:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.