From: Stevan Little Date: Wed, 28 May 2008 03:24:47 +0000 (+0000) Subject: fixing the destructor, so it doesnt need to be created X-Git-Tag: 0_55~132 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2c83d341275b9f56dcd49d64907ee3afd081a5fa;p=gitmo%2FMoose.git fixing the destructor, so it doesnt need to be created --- diff --git a/t/000_recipes/001_point.t b/t/000_recipes/001_point.t index 91b877a..771a795 100644 --- a/t/000_recipes/001_point.t +++ b/t/000_recipes/001_point.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 60; +use Test::More tests => 58; use Test::Exception; BEGIN { @@ -128,7 +128,7 @@ is_deeply( [ 'Moose::Object' ], '... Point got the automagic base class'); -my @Point_methods = qw(meta new x y clear DESTROY); +my @Point_methods = qw(meta new x y clear); my @Point_attrs = ('x', 'y'); is_deeply( @@ -160,7 +160,7 @@ is_deeply( [ 'Point' ], '... Point3D gets the parent given to it'); -my @Point3D_methods = qw(new meta clear DESTROY); +my @Point3D_methods = qw(new meta clear); my @Point3D_attrs = ('z'); is_deeply(