]> git.openstreetmap.org Git - rails.git/blob - test/factories/note_comments.rb
Add frozen_string_literal comments to ruby files
[rails.git] / test / factories / note_comments.rb
1 # frozen_string_literal: true
2
3 FactoryBot.define do
4   factory :note_comment do
5     sequence(:body) { |n| "This is note comment #{n}" }
6     visible { true }
7     event { "commented" }
8     note
9   end
10 end