use strict;
use warnings;
-use Test::More tests => 60;
+use Test::More tests => 58;
use Test::Exception;
BEGIN {
[ '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(
[ '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(