openstreetmap-website/test/factories/note_comments.rb
2017-10-29 19:29:30 +00:00

8 lines
159 B
Ruby

FactoryBot.define do
factory :note_comment do
sequence(:body) { |n| "This is note comment #{n}" }
visible true
event "opened"
note
end
end