TODOified test for RT#40701
[dbsrgits/DBIx-Class.git] / t / 71mysql.t
index 475dc0f..a2e868f 100644 (file)
@@ -54,7 +54,7 @@ my $it = $schema->resultset('Artist')->search( {},
       offset => 2,
       order_by => 'artistid' }
 );
-is( $it->count, 3, "LIMIT count ok" );
+is( $it->count, 3, "LIMIT count ok" );  # ask for 3 rows out of 7 artists
 is( $it->next->name, "Artist 2", "iterator->next ok" );
 $it->next;
 $it->next;
@@ -136,7 +136,7 @@ my $cd = $schema->resultset ('CD')->create ({});
 
 my $producer = $schema->resultset ('Producer')->create ({});
 
-lives_ok { $cd->set_producers ([ $cd ]) } 'set_relationship doesnt die';
+lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die';
 
 # clean up our mess
 END {