mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-04 07:09:14 +00:00
16 lines
302 B
Ruby
16 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|