X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b70da7b8ea15ab48bb2f34155567cea6dffc8fc9..e5c5776e65f1a461d7d1aa678e843c9cf83316c2:/test/factories/notes.rb diff --git a/test/factories/notes.rb b/test/factories/notes.rb index 77b4245aa..ab7d5df56 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -4,6 +4,19 @@ FactoryBot.define do longitude { 1 * GeoRecord::SCALE } # tile { QuadTile.tile_for_point(1,1) } + trait :closed do + transient do + closed_by { nil } + end + + status { "closed" } + closed_at { Time.now.utc } + + after(:create) do |note, context| + create(:note_comment, :author => context.closed_by, :body => "Closing comment", :event => "closed", :note => note) + end + end + factory :note_with_comments do transient do comments_count { 1 }