I'm using the geocoder gem to add geocoding functionality to one of my Active Record model classes. This works great, but I don't actually want the geocoding to fire during unit tests.

I've tried stubbing out the call to geocode by adding this to my RSpec test:

before(:each) do
User.stub!(:geocode).and_return([1,1]) end

However, when I run my tests it still appears to be calling out to geocode. What am I doing wrong?

FYI, this all works if I stub on the instance level (e.g. some_user.stub! instead of User.stub!).

link|improve this question

62% accept rate
are you using geocode in your app like user = User.first and then user.geocode? – nash Apr 13 '11 at 7:35
Just fyi, another asset to geocode and display google maps: github.com/apneadiving/Google-Maps-for-Rails – apneadiving Apr 13 '11 at 7:38
feedback

3 Answers

up vote 2 down vote accepted

If you want to use stubbing on the instance level, you should use other mocking framework than RSpec’s. It's mocha for example (add the following to spec/spec_helper.rb):

Spec::Runner.configure do |config|
  config.mock_with :mocha
end

http://rspec.info/documentation/mocks/other_frameworks.html

Now, you can use any_instance in your tests:

before(:each) do
 User.any_instance.stub(:geocode).and_return([1,1]) 
end
link|improve this answer
3  
Or use RSpec >= 2.6 which itself implements #any_instance... – awendt Oct 14 '11 at 6:49
This works if you only care about the return value of :geocode. But the geocoder module actually updates the latitude and longitude of the object. How would I stub that out? – harrism Feb 7 at 12:25
In fact, the code you gave works with RSpec >= 2.6, but not with Mocha. – declan May 21 at 18:45
feedback

it's

before(:each) do 
  Address.any_instance.stubs(:geocode).returns([1,1])
end

with mocha.

link|improve this answer
feedback

Check out my implementation: Gist: https://gist.github.com/1275502 My notes: http://code-snippets.paveltyk.info/snippets/80

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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