Files
fizzy/test/test_helpers/card_activity_test_helper.rb
T
2025-06-05 15:09:55 +02:00

12 lines
392 B
Ruby

module CardActivityTestHelper
def multiple_people_comment_on(card, times: 4, people: users(:david, :kevin, :jz))
perform_enqueued_jobs only: Card::ActivitySpike::DetectionJob do
times.times do |index|
creator = people[index % people.size]
card.comments.create!(body: "Comment number #{index}", creator: creator)
travel 1.second
end
end
end
end