X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3123822bba5865e81e8c10be16452a0a8b5362f9..4a9aa0a12e3a9f4dbe19f17b3117c727b62a43b9:/test/factories/notes.rb diff --git a/test/factories/notes.rb b/test/factories/notes.rb index 52c23e7d6..9dbcdf58c 100644 --- a/test/factories/notes.rb +++ b/test/factories/notes.rb @@ -3,5 +3,15 @@ FactoryGirl.define do 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