summaryrefslogtreecommitdiff
path: root/spec/factories/abuse_reports.rb
blob: 355fb14299414bc035816201fda3c77605558ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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' }
    links_to_spam { ['https://gitlab.com/issue1', 'https://gitlab.com/issue2'] }
  end
end