Made PK::Auto::* shells since the functionality is now elsewhere
[dbsrgits/DBIx-Class.git] / t / run / 10auto.tl
index 2294d6d..7c795f4 100644 (file)
@@ -4,9 +4,10 @@ my $schema = shift;
 plan tests => 2;
 
 $schema->class("Artist")->load_components(qw/PK::Auto::SQLite/);
+  # Should just be PK::Auto but this ensures the compat shim works
 
 # add an artist without primary key to test Auto
-my $artist = $schema->class("Artist")->create( { name => 'Auto' } );
+my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } );
 $artist->name( 'Auto Change' );
 ok($artist->update, 'update on object created without PK ok');