mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
16 lines
310 B
Ruby
16 lines
310 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
|