summaryrefslogtreecommitdiff
path: root/spec/factories/abuse_reports.rb
blob: 4ae9b4def8edf503676465f8298aaceb9b766967 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :abuse_report do
    reporter factory: :user
    user
    message { 'User sends spam' }
    reported_from_url { 'http://gitlab.com' }
  end
end