Changes and prevent a spurious todo-pass
Peter Rabbitson [Tue, 24 Nov 2009 09:39:52 +0000 (09:39 +0000)]
Changes
t/prefetch/via_search_related.t

diff --git a/Changes b/Changes
index f481e6e..08cd863 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,6 +5,8 @@ Revision history for DBIx::Class
         - Do not attempt to deploy FK constraints pointing to a View
         - Refactored Sybase storage driver into a central ::DBI::Sybase
           dispatcher, and a sybase-specific ::DBI::Sybase::ASE
+        - Make sure populate() inherits the resultset conditions just
+          like create() does
 
 0.08114 2009-11-14 17:45:00 (UTC)
         - Preliminary support for MSSQL via DBD::ADO
index f686e15..a9f3f8a 100644 (file)
@@ -57,12 +57,12 @@ lives_ok ( sub {
     }
   );
 
-  is($use_prefetch->count, $no_prefetch->count, 'counts with and without prefetch match');
   is(
     scalar ($use_prefetch->all),
     scalar ($no_prefetch->all),
     "Amount of returned rows is right"
   );
+  is($use_prefetch->count, $no_prefetch->count, 'counts with and without prefetch match');
 
 }, 'search_related prefetch with condition referencing unqualified column of a joined table works');
 }