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)
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' );
}
is( scalar @warnings, 0,
'warning not issued for correct order in load_components()' );
+
+use_ok('DBIx::Class::AccessorGroup');