added failing test for -desc => \['colA LIKE ?', 'test']
Moritz Onken [Fri, 29 May 2009 13:41:22 +0000 (13:41 +0000)]
t/06order_by.t

index 71b9dc2..7d2ccf4 100644 (file)
@@ -86,6 +86,11 @@ my @cases =
     expects => ' ORDER BY colA ASC, colB DESC, colC ASC, colD ASC',
     expects_quoted => ' ORDER BY `colA` ASC, `colB` DESC, `colC` ASC, `colD` ASC',
    },
+   {
+    given => { -desc => \['colA LIKE ?', 'test'] },
+    expects => ' ORDER BY colA LIKE ? DESC',
+    expects_quoted => ' ORDER BY colA LIKE ? DESC',
+   },
   );