Files
snpr/spec/factories/users.rb
2020-04-19 12:49:08 +02:00

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