]> git.openstreetmap.org Git - rails.git/blob - test/factories/issue_comment.rb
Remove .inbox-row and use .table-success instead of .inbox-row-unread
[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