openstreetmap-website/test/factories/note_comments.rb
2018-08-28 19:12:01 +01:00

8 lines
167 B
Ruby

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