Commit | Line | Data |
c0329273 |
1 | BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) } |
2 | |
70350518 |
3 | use strict; |
8273e845 |
4 | use warnings; |
70350518 |
5 | |
6 | use Test::More; |
c0329273 |
7 | |
70350518 |
8 | use DBICTest; |
9 | |
a47e1233 |
10 | my $schema = DBICTest->init_schema(); |
0567538f |
11 | |
2f6e5af9 |
12 | plan tests => 2; |
0567538f |
13 | |
0a8462d4 |
14 | $schema->class("Artist")->load_components(qw/PK::Auto::SQLite/); |
15 | # Should just be PK::Auto but this ensures the compat shim works |
0567538f |
16 | |
17 | # add an artist without primary key to test Auto |
f9db5527 |
18 | my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } ); |
0567538f |
19 | $artist->name( 'Auto Change' ); |
20 | ok($artist->update, 'update on object created without PK ok'); |
21 | |
2f6e5af9 |
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."); |
24 | |