test tweaks and a bugfix
Matt S Trout [Tue, 19 Jul 2005 17:25:23 +0000 (17:25 +0000)]
lib/DBIx/Class/CDBICompat/Convenience.pm
t/02-Film.t

index 63cfa67..b82e4a0 100644 (file)
@@ -29,7 +29,7 @@ sub id {
 
 sub retrieve_all {
   my ($class) = @_;
-  return $class->search( { 1 => 1 } );
+  return $class->retrieve_from_sql( '1' );
 }
 
 1;
index 3207b4a..97505ba 100644 (file)
@@ -77,7 +77,7 @@ $gone->update;
 
 {
        my @films = eval { Film->retrieve_all };
-       is(@films, 2, "We have 2 films in total");
+       cmp_ok(@films, '==', 2, "We have 2 films in total");
 }
 
 my $gone_copy = Film->retrieve('Gone With The Wind');