use strict;
use warnings;
-use Test::More tests => 8;
+use Test::More tests => 9;
{
package Ball;
is( Ball->meta->get_method('bounce')->meta->name, $method_class,
"method's package still exists" );
+ is( Ball->meta->get_method('bounce'), $method_object,
+ 'original method object is preserved' );
+
local $TODO = "method seems to be reinitialized" if !$method_meta;
is( Ball->meta->get_method('bounce')->meta . '', $original_meta,