Index: t/60core.t
===================================================================
--- t/60core.t	(wersja 5394)
+++ t/60core.t	(kopia robocza)
@@ -7,7 +7,7 @@
 
 my $schema = DBICTest->init_schema();
 
-plan tests => 86;
+plan tests => 87;
 
 eval { require DateTime::Format::MySQL };
 my $NO_DTFM = $@ ? 1 : 0;
@@ -24,6 +24,15 @@
     $is_broken_sqlite = 1;
 }
 
+my $cd = $schema->resultset('CD')->find( { 
+        cdid => 2,
+        liner_notes => {
+            'notes' => 'test note changed'
+        }, 
+    },
+    { key => 'primary' } 
+);
+is( $cd && $cd->cdid, 2, 'CD found');
 
 my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
 
