Sha256: affcb42d19d10e1a73ed731b4beb67d0f4d3b9a6b24a589717b2680dcd2927e9
Contents?: true
Size: 297 Bytes
Versions: 26
Compression:
Stored size: 297 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :schema_user do name { Faker::FunnyName.two_word_name } email { Faker::Internet.unique.email } password { Faker::Internet.password } trait :confirmed do confirmed_at { Time.zone.now } end end end
Version data entries
26 entries across 26 versions & 1 rubygems