Files
openfoodnetwork/spec/factories/state_factory.rb
Pau Perez 37bfdf69a9 Bring required state factory
It was removed from master in
2abbfad18c
but it's still required by the zone_specs and the address factory.
2020-08-28 12:44:30 +02:00

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