mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-18 01:39:01 +00:00
13 lines
287 B
Ruby
13 lines
287 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :user do
|
|
name { 'Dogbert' }
|
|
sequence(:email) { |i| "fubert#{i}@example.org" }
|
|
password { 'strengjeheim' }
|
|
password_confirmation { 'strengjeheim' }
|
|
sex { 'yes please' }
|
|
yearofbirth { '1970' }
|
|
end
|
|
end
|