X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02where.t;h=644eca5c8b1ecde7290bec4bcc97f117f993d943;hb=778ee98b70b2a7ae44aa17c47ea609d7a2b7466c;hp=7c4851bcadfb18d423e56b4a26e3b09ed2e357c5;hpb=ac75bf30842674031fce148a0631b966cbf9a4a6;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/02where.t b/t/02where.t index 7c4851b..644eca5 100644 --- a/t/02where.t +++ b/t/02where.t @@ -11,6 +11,12 @@ my $not_stringifiable = bless {}, 'SQLA::NotStringifiable'; my @handle_tests = ( { + where => 'foo', + order => [], + stmt => ' WHERE foo', + bind => [], + }, + { where => { requestor => 'inna', worker => ['nwiger', 'rcwe', 'sfz'], @@ -392,6 +398,11 @@ my @handle_tests = ( stmt => " WHERE ( 0 ) ", bind => [ ], }, + { + where => { artistid => {} }, + stmt => '', + bind => [ ], + } ); for my $case (@handle_tests) {