Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
correcter decontainerized test
  • Loading branch information
TimToady committed Feb 28, 2015
1 parent 35b8f69 commit d2134c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion S02-types/hash.t
Expand Up @@ -256,7 +256,9 @@ lives_ok { Hash.new("a" => "b") }, 'Hash.new($pair) lives';
is %h{}.join('|'), %h.join('|'), '{} zen slice';

my $h := { a => 1, b => 2, c => 3 }; say $h{}[0].WHAT.gist;
is $h{}[0].WHAT.gist, '(Pair)', '{} zen slice decontainerizes';
my @result;
@result.push($_) for $h{};
is @result.elems, 3, '{} zen slice decontainerizes';
} #2

# RT #75868
Expand Down

0 comments on commit d2134c7

Please sign in to comment.