Guest User

Untitled

a guest
Dec 12th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Location
  2. def geocode
  3. geocoded_address = GeocodedAddress.new(self.full_street_address)
  4. self.latitude = geocoded_address.latitude
  5. self.longitude = geocoded_address.longitude
  6. return self
  7. end
  8. end
  9.  
  10. let(:location){FactoryGirl.create(:location)}
  11. location.stub(:geocode).and_return(hmmm)
Add Comment
Please, Sign In to add comment