Added copy test from Purge
[dbsrgits/DBIx-Class.git] / t / run / 10auto.tl
index d715304..1d6b569 100644 (file)
@@ -1,6 +1,6 @@
 sub run_tests {
 
-plan tests => 1;
+plan tests => 2;
 
 DBICTest->class("Artist")->load_components(qw/PK::Auto::SQLite/);
 
@@ -9,6 +9,9 @@ my $artist = DBICTest->class("Artist")->create( { name => 'Auto' } );
 $artist->name( 'Auto Change' );
 ok($artist->update, 'update on object created without PK ok');
 
+my $copied = $artist->copy({ name => 'Don\'t tell the RIAA', artistid => undef });
+is($copied->name, 'Don\'t tell the RIAA', "Copied with PKs ok.");
+
 }
 
 1;