]> git.openstreetmap.org Git - rails.git/blob - test/factories/issue_comment.rb
Minor tweaks to the markdown, in particular to wrap code characters in backticks
[rails.git] / test / factories / issue_comment.rb
1 FactoryBot.define do
2   factory :issue_comment do
3     sequence(:body) { |n| "This is issue comment #{n}" }
4
5     issue
6     user
7   end
8 end