# 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|
- create(:note_comment, :body => "Closing comment", :event => "closed", :note => note)
+ after(:create) do |note, context|
+ create(:note_comment, :author => context.closed_by, :body => "Closing comment", :event => "closed", :note => note)
end
end