mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-17 04:34:24 +00:00
12 lines
236 B
Ruby
12 lines
236 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
|