19 lines
447 B
Ruby
19 lines
447 B
Ruby
# 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'] }
|
|
|
|
trait :closed do
|
|
status { 'closed' }
|
|
end
|
|
|
|
trait :with_screenshot do
|
|
screenshot { fixture_file_upload('spec/fixtures/dk.png') }
|
|
end
|
|
end
|
|
end
|