94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
11 lines
284 B
Ruby
11 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :spam_log do
|
|
user
|
|
sequence(:source_ip) { |n| "42.42.42.#{n % 255}" }
|
|
noteable_type 'Issue'
|
|
sequence(:title) { |n| "Spam title #{n}" }
|
|
description { "Spam description\nwith\nmultiple\nlines" }
|
|
end
|
|
end
|