There are still random failures in 0.011. It seems you misspelled Sortkeys (no CamelCase here!). This patch should help:
diff --git i/lib/Tao/DBI/st_deep.pm w/lib/Tao/DBI/st_deep.pm
index d7224d1..43a2174 100644
--- i/lib/Tao/DBI/st_deep.pm
+++ w/lib/Tao/DBI/st_deep.pm
@@ -31,7 +31,7 @@ sub initialize {
sub to_perl {
require Data::Dumper;
- local $Data::Dumper::SortKeys = 1;
+ local $Data::Dumper::Sortkeys = 1;
return Data::Dumper::Dumper(shift);
}
diff --git i/t/005tr_hash.t w/t/005tr_hash.t
index ab17aed..38b3f42 100644
--- i/t/005tr_hash.t
+++ w/t/005tr_hash.t
@@ -5,7 +5,7 @@ use_ok('Tao::DBI::st_deep');
sub to_perl {
require Data::Dumper;
- local $Data::Dumper::SortKeys = 1;
+ local $Data::Dumper::Sortkeys = 1;
return Data::Dumper::Dumper(shift);
}
On 2016-01-05 23:53:21, FERREIRA wrote:
Show quoted text> You are completely right. I don't know why when I sample a few test
> failures – all I saw was the trouble with the undeclared YAML
> dependency. But the failures due to hash randomization were quite
> clear now. Release 0.011 should clear this for good. Thanks!
>
> On Mon Jan 04 01:22:38 2016, SREZIC wrote: