X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=7d2ccf49a8424b758285c918c7973f32fd83e680;hb=293149c55f1e9066c5e31f703aafc4a109cf0f5a;hp=71b9dc2f6c645060224889e6379424f81c1220c9;hpb=54871ee983acf1261c22289912a642db6fc18707;p=scpubgit%2FQ-Branch.git diff --git a/t/06order_by.t b/t/06order_by.t index 71b9dc2..7d2ccf4 100644 --- a/t/06order_by.t +++ b/t/06order_by.t @@ -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', + }, );