turniere-backend/spec/factories/users.rb

10 lines
215 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
username { Faker::Internet.unique.username }
email { Faker::Internet.unique.email }
password { Faker::Internet.password }
end
end