openstreetmap-website/test/factories/note_comments.rb
2016-10-06 08:52:17 +01:00

8 lines
160 B
Ruby

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