X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=71b9dc2f6c645060224889e6379424f81c1220c9;hb=952f9e2dcb459ab5854a9fb0e49e63b5473778d3;hp=d404aa3a1b78001820fd83c10e47321d137af6ec;hpb=994edb7789cfc682a88a3054143786ef7fe38926;p=scpubgit%2FQ-Branch.git diff --git a/t/06order_by.t b/t/06order_by.t index d404aa3..71b9dc2 100644 --- a/t/06order_by.t +++ b/t/06order_by.t @@ -3,6 +3,7 @@ use strict; use warnings; use Test::More; +use Test::Exception; use SQL::Abstract; @@ -80,11 +81,15 @@ my @cases = expects => ' ORDER BY colA DESC, colB DESC, colC DESC', expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC, `colC` DESC', }, - + { + given => [{ -asc => 'colA' }, { -desc => [qw/colB/] }, { -asc => [qw/colC colD/] }], + expects => ' ORDER BY colA ASC, colB DESC, colC ASC, colD ASC', + expects_quoted => ' ORDER BY `colA` ASC, `colB` DESC, `colC` ASC, `colD` ASC', + }, ); -plan tests => (scalar(@cases) * 2); +plan tests => (scalar(@cases) * 2) + 2; my $sql = SQL::Abstract->new; my $sqlq = SQL::Abstract->new({quote_char => '`'}); @@ -93,3 +98,15 @@ for my $case( @cases){ is($sql->_order_by($case->{given}), $case->{expects}); is($sqlq->_order_by($case->{given}), $case->{expects_quoted}); } + +throws_ok ( + sub { $sql->_order_by({-desc => 'colA', -asc => 'colB' }) }, + qr/hash passed .+ must have exactly one key/, + 'Undeterministic order exception', +); + +throws_ok ( + sub { $sql->_order_by({-desc => [ qw/colA colB/ ], -asc => [ qw/colC colD/ ] }) }, + qr/hash passed .+ must have exactly one key/, + 'Undeterministic order exception', +);