You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
402 B
14 lines
402 B
2 years ago
|
FactoryBot.define do
|
||
|
factory :location do
|
||
|
location_code { Faker::Name.initials(number: 10) }
|
||
|
postcode { Faker::Address.postcode }
|
||
|
address_line1 { Faker::Address.street_name }
|
||
|
address_line2 { Faker::Address.city }
|
||
|
type_of_unit { Faker::Lorem.word }
|
||
|
type_of_building { Faker::Lorem.word }
|
||
|
wheelchair_adaptation { 0 }
|
||
|
county { Faker::Address.state }
|
||
|
scheme
|
||
|
end
|
||
|
end
|