1use strict;
2use warnings;  
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8my $schema = DBICTest->init_schema();
9
10plan tests => 2;
11
12$schema->class("Artist")->load_components(qw/PK::Auto::SQLite/);
13  # Should just be PK::Auto but this ensures the compat shim works
14
15# add an artist without primary key to test Auto
16my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } );
17$artist->name( 'Auto Change' );
18ok($artist->update, 'update on object created without PK ok');
19
20my $copied = $artist->copy({ name => 'Don\'t tell the RIAA', artistid => undef });
21is($copied->name, 'Don\'t tell the RIAA', "Copied with PKs ok.");
22
23