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

10 lines
224 B
Ruby
Raw Normal View History

2018-11-26 08:39:32 -05:00
# frozen_string_literal: true
FactoryBot.define do
factory :membership_application do
2018-11-26 09:15:29 -05:00
first_name { Faker::Name.first_name }
last_name { Faker::Name.last_name }
2018-11-26 08:39:32 -05:00
middle_name { Faker::Name.first_name }
end
end