Changeset 7190 for t/var/assigning_refs.t
- Timestamp:
- 09/28/05 23:08:26 (3 years ago)
- Files:
-
- 1 modified
-
t/var/assigning_refs.t (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/var/assigning_refs.t
r6659 r7190 21 21 my @array = ($arrayref); 22 22 23 is +@array, 1, '@array = ($arrayref) does not flatten the arrayref' ;23 is +@array, 1, '@array = ($arrayref) does not flatten the arrayref', :todo<bug>; 24 24 } 25 25 … … 28 28 my @array = $arrayref; 29 29 30 is +@array, 1, '@array = $arrayref does not flatten the arrayref' ;30 is +@array, 1, '@array = $arrayref does not flatten the arrayref', :todo<bug>; 31 31 } 32 32 … … 37 37 my %hash = ($hashref,); 38 38 39 is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref' ;39 is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref', :todo<bug>; 40 40 } 41 41 … … 44 44 my %hash = ($hashref); 45 45 46 is +%hash, 1, '%hash = ($hashref) does not flatten the hashref' ;46 is +%hash, 1, '%hash = ($hashref) does not flatten the hashref', :todo<bug>; 47 47 } 48 48 … … 51 51 my %hash = $hashref; 52 52 53 is +%hash, 1, '%hash = $hashref does not flatten the hashref' ;53 is +%hash, 1, '%hash = $hashref does not flatten the hashref', :todo<bug>; 54 54 } 55 55
