4e3516788f
FFaker can generate data that randomly break our test suite. This simplifies our factories and use sequences which are more predictive. Signed-off-by: Rémy Coutable <remy@rymai.me>
9 lines
254 B
Ruby
9 lines
254 B
Ruby
FactoryGirl.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
|