Sha256: a3feaa031b4ccd9abc0753798107210150924a10737c51821283552773234eb3
Contents?: true
Size: 235 Bytes
Versions: 25
Compression:
Stored size: 235 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :guest do email { Faker::Internet.unique.email } password { Faker::Internet.password } trait :confirmed do confirmed_at { Time.now } end end end
Version data entries
25 entries across 25 versions & 1 rubygems