cartodb-4.42/spec/factories/geocodings.rb
2024-04-06 05:25:13 +00: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