Don't rely on hash order in tests (RT#81564) master
Dagfinn Ilmari Mannsåker [Tue, 4 Dec 2012 16:20:01 +0000 (16:20 +0000)]
ChangeLog
t/003_basic_hash.t
t/203_trait_hash.t

index bd1d4f9..a054a05 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Revision history for Perl extension MooseX-AttributeHelpers
 
+    - Don't rely on hash order in tests (RT#81564)
+
 0.23 Fri Jan 1, 2010
     - A small internals fix to prevent breakage with the next version of
       Moose. (Dave Rolsky)
index 1f842ae..a10b506 100644 (file)
@@ -170,10 +170,10 @@ is_deeply($options->provides, {
 is($options->type_constraint->type_parameter, 'Str', '... got the right container type');
 
 $stuff->set_option( oink => "blah", xxy => "flop" );
-my @key_value = $stuff->key_value;
+my @key_value = sort { $a->[0] cmp $b->[0] } $stuff->key_value;
 is_deeply(
     \@key_value,
-    [ [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ],
+    [ [ 'oink', 'blah' ], [ 'quantity', 4 ], [ 'xxy', 'flop' ] ],
     '... got the right key value pairs'
 );
 
index 8e876b1..173e5db 100644 (file)
@@ -156,10 +156,10 @@ is_deeply($options->provides, {
 is($options->type_constraint->type_parameter, 'Str', '... got the right container type');
 
 $stuff->set_option( oink => "blah", xxy => "flop" );
-my @key_value = $stuff->key_value;
+my @key_value = sort { $a->[0] cmp $b->[0] }  $stuff->key_value;
 is_deeply(
     \@key_value,
-    [ [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ],
+    [ [ 'oink', 'blah' ], [ 'quantity', 4 ], [ 'xxy', 'flop' ] ],
     '... got the right key value pairs'
 );