ResultSetInstance is now a component on DB, some test cleanup
[dbsrgits/DBIx-Class.git] / t / run / 10auto.tl
CommitLineData
0567538f 1sub run_tests {
2
3plan tests => 1;
4
5DBICTest::Artist->load_components(qw/PK::Auto::SQLite/);
6
7# add an artist without primary key to test Auto
8my $artist = DBICTest::Artist->create( { name => 'Auto' } );
9$artist->name( 'Auto Change' );
10ok($artist->update, 'update on object created without PK ok');
11
12}
13
141;