That method is defined in one of my helpers that are loaded in by the
app with helpers :all in the ApplicationController.
Is this intended behavior to force me to mock/stub all my own helpers?
Not at all.
If not, what do I have to do to make the specs aware of helpers?
helper(MyHelper, :my_helper, ‘other_helper’)
I can call view.extend(MyHelper) just before rendering, but that’s a bit
cumbersome if several helpers are involved.
I’m using rspec-rails 2.0.0.beta.12 with Rails 3.0.0.beta4.
I’ve got a ticket into rails to make this method work with :all, as
documented, but until that’s fixed you have to list them all separately.
At least you can do it in one statement