Add a test for adding a method modifier to a method added after class was first defined
Dave Rolsky [Fri, 20 Feb 2009 19:22:15 +0000 (19:22 +0000)]
t/017_add_method_modifier.t

index 788dac0..37ecf5c 100644 (file)
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 20;
+use Test::More tests => 21;
 use Test::Exception;
 
 use Class::MOP;
@@ -79,6 +79,11 @@ use Class::MOP;
         'Class::MOP::Method::Wrapped' );
     ::isa_ok( BankAccount->meta->get_method('withdraw'),
         'Class::MOP::Method' );
+
+    CheckingAccount->meta->add_method( foo => sub { 'foo' } );
+    CheckingAccount->meta->add_before_method_modifier( foo => sub { 'wrapped' } );
+    ::isa_ok( CheckingAccount->meta->get_method('foo'),
+        'Class::MOP::Method::Wrapped' );
 }
 
 my $savings_account = BankAccount->new( balance => 250 );