Added failing test for update
Andy Grundman [Tue, 2 Aug 2005 17:20:39 +0000 (17:20 +0000)]
t/01core.t

index 7a80931..92dbdd5 100644 (file)
@@ -75,3 +75,9 @@ $new_again = DBICTest::Artist->retrieve(4);
 is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
 
 is(DBICTest::Artist->count, 4, 'count ok');
+
+# add an artist without primary key to test Auto
+my $artist = DBICTest::Artist->create( { name => 'Auto' } );
+$artist->name( 'Auto Change' );
+ok($artist->update, 'update on object created without PK ok');
+