[Jifty-commit] r3927 - in Jifty-DBI/trunk: t

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Aug 21 19:08:59 EDT 2007


Author: falcone
Date: Tue Aug 21 19:08:59 2007
New Revision: 3927

Modified:
   Jifty-DBI/trunk/   (props changed)
   Jifty-DBI/trunk/t/01searches.t

Log:
 r23978 at ketch:  falcone | 2007-08-21 18:00:27 -0400
 * we don't need to TODO this MySQL test because the case matches exactly
   and returns values


Modified: Jifty-DBI/trunk/t/01searches.t
==============================================================================
--- Jifty-DBI/trunk/t/01searches.t	(original)
+++ Jifty-DBI/trunk/t/01searches.t	Tue Aug 21 19:08:59 2007
@@ -204,10 +204,7 @@
         is_deeply( $users_obj, $clean_obj, 'after clean_slate looks like new object');
         $users_obj->limit( column => 'name', value => ['Jesse Vincent', 'Audrey Tang'], operator => 'IN',
                            case_sensitive => 1 );
-        TODO: {
-            local $TODO = "MySQL still needs case sensitive fixes" if ( $d eq 'mysql' || $d eq 'mysqlPP' );
-            is( $users_obj->count, 2, "case sensitive search, should find two rows");
-        }
+        is( $users_obj->count, 2, "case sensitive search, should find two rows");
         $users_obj->clean_slate;
         is_deeply( $users_obj, $clean_obj, 'after clean_slate looks like new object');
         $users_obj->limit( column => 'name', value => ['jesse vincent', 'audrey tang'], operator => 'IN', 


More information about the Jifty-commit mailing list