fixed e-mail address
[dbsrgits/DBIx-Class.git] / t / run / 10auto.tl
1 sub run_tests {
2 my $schema = shift;
3
4 plan tests => 2;
5
6 $schema->class("Artist")->load_components(qw/PK::Auto::SQLite/);
7
8 # add an artist without primary key to test Auto
9 my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } );
10 $artist->name( 'Auto Change' );
11 ok($artist->update, 'update on object created without PK ok');
12
13 my $copied = $artist->copy({ name => 'Don\'t tell the RIAA', artistid => undef });
14 is($copied->name, 'Don\'t tell the RIAA', "Copied with PKs ok.");
15
16 }
17
18 1;