X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2e1ccafdce30a06fab7a72e5c856ce8a6c23bfdd..550fa0c8e46c9d4e09e30f7940bcb63f84f0ac41:/test/factories/notes.rb diff --git a/test/factories/notes.rb b/test/factories/notes.rb index 52c23e7d6..77b4245aa 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -1,7 +1,17 @@ -FactoryGirl.define do +FactoryBot.define do factory :note do - latitude 1 * GeoRecord::SCALE - longitude 1 * GeoRecord::SCALE - # tile QuadTile.tile_for_point(1,1) + latitude { 1 * GeoRecord::SCALE } + longitude { 1 * GeoRecord::SCALE } + # tile { QuadTile.tile_for_point(1,1) } + + factory :note_with_comments do + transient do + comments_count { 1 } + end + + after(:create) do |note, evaluator| + create_list(:note_comment, evaluator.comments_count, :note => note) + end + end end end