report_note_fabricator.rb 166 B

1234567
  1. # frozen_string_literal: true
  2. Fabricator(:report_note) do
  3. report { Fabricate.build(:report) }
  4. account { Fabricate.build(:account) }
  5. content 'Test Content'
  6. end