- Timestamp:
- 09/29/08 22:54:00 (2 months ago)
- Files:
-
- 1 modified
-
t/spec/S02-builtin_data_types/assigning-refs.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S02-builtin_data_types/assigning-refs.t
r22458 r22459 36 36 my %hash; 37 37 try { %hash = ($hashref,) }; 38 39 is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref', :todo<bug>; 38 39 #?rakudo todo 'non-flattening hash refs' 40 #?pugs todo 'non-flattening hash refs' 41 is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref'; 40 42 } 41 43 … … 44 46 my %hash = ($hashref); 45 47 46 is +%hash, 1, '%hash = ($hashref) does not flatten the hashref', :todo<bug>; 48 #?rakudo todo 'non-flattening hash refs' 49 #?pugs todo 'non-flattening hash refs' 50 is +%hash, 1, '%hash = ($hashref) does not flatten the hashref'; 47 51 } 48 52 … … 51 55 my %hash = $hashref; 52 56 53 is +%hash, 1, '%hash = $hashref does not flatten the hashref', :todo<bug>; 57 #?rakudo todo 'non-flattening hash refs' 58 #?pugs todo 'non-flattening hash refs' 59 is +%hash, 1, '%hash = $hashref does not flatten the hashref'; 54 60 } 55 61
