fix for AccessorGroup
Matt S Trout [Tue, 7 Aug 2007 14:45:46 +0000 (14:45 +0000)]
Changes
lib/DBIx/Class/AccessorGroup.pm
t/05components.t

diff --git a/Changes b/Changes
index 4fbcedd..beb34cc 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for DBIx::Class
         - fixed storage->connected fork bug
           (test and fix from Radu Greab)
+        - add 1; to AccessorGroup.pm for stuff that still uses it
         - refactor Statistics to create debugging filehandle to fix bug with
           closed STDERR, update docs and modify Versioned to use Statistics
           (original fix from diz)
index f553a87..ae4d490 100644 (file)
@@ -5,6 +5,8 @@ use warnings;
 
 use base qw/Class::Accessor::Grouped/;
 
+1;
+
 =head1 NAME
 
 DBIx::Class::AccessorGroup - See Class::Accessor::Grouped
index 567bc1b..303f028 100644 (file)
@@ -7,7 +7,7 @@ use Test::More;
 use lib qw(t/lib);
 use DBICTest::ForeignComponent;
 
-plan tests => 5;
+plan tests => 6;
 
 #   Tests if foreign component was loaded by calling foreign's method
 ok( DBICTest::ForeignComponent->foreign_test_method, 'foreign component' );
@@ -62,3 +62,5 @@ is( scalar @warnings, 1,
 }
 is( scalar @warnings, 0,
     'warning not issued for correct order in load_components()' );
+
+use_ok('DBIx::Class::AccessorGroup');