Fixed failing PK test (by loading PK plugins :)
Matt S Trout [Tue, 2 Aug 2005 19:10:27 +0000 (19:10 +0000)]
t/01core.t

index 3b128e4..93c211d 100644 (file)
@@ -76,6 +76,12 @@ is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
 
 is(DBICTest::Artist->count, 4, 'count ok');
 
+use DBIx::Class::PK::Auto;
+use DBIx::Class::PK::Auto::SQLite;
+
+unshift(@DBICTest::Artist::ISA, qw/DBIx::Class::PK::Auto
+                                   DBIx::Class::PK::Auto::SQLite/);
+
 # add an artist without primary key to test Auto
 my $artist = DBICTest::Artist->create( { name => 'Auto' } );
 $artist->name( 'Auto Change' );