account_note_fabricator.rb 185 B

1234567
  1. # frozen_string_literal: true
  2. Fabricator(:account_note) do
  3. account { Fabricate.build(:account) }
  4. target_account { Fabricate.build(:account) }
  5. comment 'User note text'
  6. end