~cytrogen/masto-fe

ref: 7730083611b345e14e14f8e31ddbb124ff8cc7fd masto-fe/spec/fabricators/user_fabricator.rb -rw-r--r-- 303 bytes
77300836 — renovate[bot] Update dependency kt-paperclip to v7.2.1 (#26869) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

Fabricator(:user) do
  account      { Fabricate.build(:account, user: nil) }
  email        { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
  password     '123456789'
  confirmed_at { Time.zone.now }
  current_sign_in_at { Time.zone.now }
  agreement true
end