]> git.openstreetmap.org Git - rails.git/blob - test/factories/issue_comment.rb
Sign in by clicking login in the same form as username/password
[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