1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
10 my $schema = DBICTest->init_schema();
14 $schema->class("Artist")->load_components(qw/PK::Auto::SQLite/);
15 # Should just be PK::Auto but this ensures the compat shim works
17 # add an artist without primary key to test Auto
18 my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } );
19 $artist->name( 'Auto Change' );
20 ok($artist->update, 'update on object created without PK ok');
22 my $copied = $artist->copy({ name => 'Don\'t tell the RIAA', artistid => undef });
23 is($copied->name, 'Don\'t tell the RIAA', "Copied with PKs ok.");