From c6d86a5db4b115783675c23900ddb292a44d99cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=BF=E3=82=B3=E7=84=BC=E3=81=8D=E4=BB=AE=E9=9D=A2?= Date: Mon, 18 Jun 2012 16:34:23 -0700 Subject: make events not use date and time to determine parent_of. fixes #5932 --- activesupport/test/notifications_test.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activesupport/test') diff --git a/activesupport/test/notifications_test.rb b/activesupport/test/notifications_test.rb index fc9fa90d07..bcb393c7bc 100644 --- a/activesupport/test/notifications_test.rb +++ b/activesupport/test/notifications_test.rb @@ -221,13 +221,15 @@ module Notifications assert_equal Hash[:payload => :bar], event.payload end - def test_event_is_parent_based_on_time_frame + def test_event_is_parent_based_on_children time = Time.utc(2009, 01, 01, 0, 0, 1) parent = event(:foo, Time.utc(2009), Time.utc(2009) + 100, random_id, {}) child = event(:foo, time, time + 10, random_id, {}) not_child = event(:foo, time, time + 100, random_id, {}) + parent.children << child + assert parent.parent_of?(child) assert !child.parent_of?(parent) assert !parent.parent_of?(not_child) -- cgit v1.2.3