Sha256: 14510c528b13f784fc32b678bed75169abb600ba64b00e630e920d45c4bda0ce
Contents?: true
Size: 558 Bytes
Versions: 15
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :physical_location, class: 'Physical::Location' do transient do country_code { 'US' } region_code { 'IL' } end name { 'Jane Doe' } company_name { 'Company' } address1 { '11 Lovely Street' } address2 { 'South' } city { 'Herndon' } sequence(:zip, 10001) { |i| i.to_s } phone { '555-555-0199' } region { country.subregions.coded(region_code) } country { Carmen::Country.coded(country_code) } initialize_with { new(attributes) } end end
Version data entries
15 entries across 15 versions & 1 rubygems