follow_request_fabricator.rb 167 B

123456
  1. # frozen_string_literal: true
  2. Fabricator(:follow_request) do
  3. account { Fabricate.build(:account) }
  4. target_account { Fabricate.build(:account, locked: true) }
  5. end