X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F10auto.tl;h=7c795f40b460e4022b4cdbe0704ebae6f0f4f618;hb=b3caf56c71e1bab50211ac1c6606bc1c59f6072b;hp=3d2a038d235f4496ac26c342c3e672cc48675ec1;hpb=843f8ecda2d9885b79402416f048016c1ecc4114;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/run/10auto.tl b/t/run/10auto.tl index 3d2a038..7c795f4 100644 --- a/t/run/10auto.tl +++ b/t/run/10auto.tl @@ -3,7 +3,8 @@ my $schema = shift; plan tests => 2; -$schema->class("Artist")->load_components(qw/PK::Auto/); +$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->resultset("Artist")->create( { name => 'Auto' } );