From: Shawn M Moore Date: Wed, 16 Jul 2008 05:54:02 +0000 (+0000) Subject: Add (failing) tests for before/after/around triggers on constructor X-Git-Tag: 0.19~249 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2b09160967a78fa6891b553eb6ae90340c6565cb;hp=d0566009e6a9eee9a27c21261f00915f9737a33e;p=gitmo%2FMouse.git Add (failing) tests for before/after/around triggers on constructor --- diff --git a/t/016-trigger.t b/t/016-trigger.t index 68a7b89..dc331c7 100644 --- a/t/016-trigger.t +++ b/t/016-trigger.t @@ -1,7 +1,7 @@ #!/usr/bin/env perl use strict; use warnings; -use Test::More tests => 16; +use Test::More tests => 21; use Test::Exception; my @trigger; @@ -97,3 +97,22 @@ is_deeply([splice @trigger], [ ['after', $child, 20, Child->meta->get_attribute('attr')], ]); +my $parent = Parent->new(attr => 2); +is_deeply([splice @trigger], [ + ['before', $parent, 2, Parent->meta->get_attribute('attr')], + ['around-before', $parent, 2, Parent->meta->get_attribute('attr')], + ['around-after', $parent, 2, Parent->meta->get_attribute('attr')], + ['after', $parent, 8, Parent->meta->get_attribute('attr')], +]); + +is($parent->attr, 8, "reader"); +is(@trigger, 0, "trigger not called on reader"); + +is($parent->attr(10), 40, "writer"); +is_deeply([splice @trigger], [ + ['before', $parent, 10, Parent->meta->get_attribute('attr')], + ['around-before', $parent, 10, Parent->meta->get_attribute('attr')], + ['around-after', $parent, 10, Parent->meta->get_attribute('attr')], + ['after', $parent, 40, Parent->meta->get_attribute('attr')], +]); +