mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-26 01:33:22 +00:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :country, class: Spree::Country do
|
|
iso_name 'UNITED STATES'
|
|
name 'United States of America'
|
|
iso 'US'
|
|
iso3 'USA'
|
|
numcode 840
|
|
end
|
|
end
|