cartodb-4.29/spec/factories/geocodings.rb
2020-06-15 10:58:47 +08:00

14 lines
285 B
Ruby

FactoryGirl.define do
# TODO: refactor tests that depend on default geocoding factory
factory :geocoding, class: Geocoding do
to_create(&:save)
kind 'namedplace'
formatter 'foo'
factory :high_resolution_geocoding do
kind 'high-resolution'
end
end
end