1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/factories/membership_applications.rb

20 lines
632 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :membership_application do
association :account, factory: :account_with_user
association :country_state
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
middle_name { Faker::Name.first_name }
date_of_birth { Faker::Date.backward }
occupation { Faker::Company.profession }
email { Faker::Internet.email }
phone_number { Faker::PhoneNumber.phone_number }
telegram_username { Faker::Internet.username }
organization_membership { Faker::Lorem.paragraph }
comment { Faker::Lorem.paragraph }
end
end