我嘗試使用webmock對地理編碼HTTP請求進行存根。 但我總是得到這樣的錯誤: NoMethodError: undefined method `[]' for nil:NilClass context "geocoding" do
before :each do
@user = Fabricate :user
stub_request(:get, /.*yb
我有一個這樣的模型,其中我存儲協調和地址。這個模型僅用於測試。 class Geomodel
include Mongoid::Document
include Geocoder::Model::Mongoid
field :coordinates, type: Array
field :address
before_save :update_co