]> git.openstreetmap.org Git - rails.git/blob - test/factories/issue_comments.rb
Merge pull request #6658 from Dimitar5555/patch-1
[rails.git] / test / factories / issue_comments.rb
1 # frozen_string_literal: true
2
3 FactoryBot.define do
4   factory :issue_comment do
5     sequence(:body) { |n| "This is issue comment #{n}" }
6
7     issue
8     user
9   end
10 end