mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-17 17:38:07 +00:00
13 lines
267 B
Ruby
13 lines
267 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
|