mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
It was removed from master in
2abbfad18c
but it's still required by the zone_specs and the address factory.
14 lines
270 B
Ruby
14 lines
270 B
Ruby
FactoryBot.define do
|
|
factory :state, class: Spree::State do
|
|
name 'Alabama'
|
|
abbr 'AL'
|
|
country do |country|
|
|
if usa = Spree::Country.find_by_numcode(840)
|
|
country = usa
|
|
else
|
|
country.association(:country)
|
|
end
|
|
end
|
|
end
|
|
end
|