examined placeholder status a bit more carefully
John Napiorkowski [Wed, 20 Oct 2010 18:01:23 +0000 (18:01 +0000)]
t/16no_sideeffects.t

index 5b145d4..e6566c3 100644 (file)
@@ -8,7 +8,13 @@ ok my $placeholders = [100,'xxx'];
 ok my $sqlat = SQL::Abstract::Tree->new({profile=>'html'});
 ok my $out = $sqlat->format('SELECT * FROM bar WHERE x = ?', $placeholders);
 
+is scalar(@$placeholders), 2,
+  'correct number of placeholders';
+
 is $placeholders->[0], 100,
   'did not mess up a placeholder';
 
+is $placeholders->[1], 'xxx',
+  'did not mess up a placeholder';
+
 done_testing;