14 lines
285 B
Ruby
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
|