1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/factories/membership_applications.rb
2018-11-26 19:15:29 +05:00

9 lines
224 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :membership_application do
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
middle_name { Faker::Name.first_name }
end
end