Fix eq_bind checker
Arthur Axel 'fREW' Schmidt [Sat, 28 Jul 2012 17:37:25 +0000 (12:37 -0500)]
We have to Deepcopy because otherwise we get $VAR->... incorrect failures

lib/SQL/Abstract/Test.pm

index 2bc681e..119edd4 100644 (file)
@@ -107,6 +107,7 @@ sub eq_bind {
 
   local $Data::Dumper::Useqq = 1;
   local $Data::Dumper::Sortkeys = 1;
+  local $Data::Dumper::Deepcopy = 1;
 
   return Dumper($bind_ref1) eq Dumper($bind_ref2);
 }