Skip to content

Commit b059fe5

Browse files
committed
unfudge hash.t
This is a bit messy, since fudge miscounts the tests after the unfudge, so sprinkle in a few #?DOES lines
1 parent 43e8d10 commit b059fe5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

S02-builtin_data_types/hash.t

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,10 @@ eval ' @%(a => <b>)<a> ';
194194
ok( $!, "doesn't really make sense, but shouldn't segfault, either ($!)");
195195

196196
# test for RT #62730
197-
#?rakudo todo 'RT #62730'
198197
lives_ok { Hash.new("a" => "b") }, 'Hash.new($pair) lives';
199198

200199
# RT #71022
201-
#?rakudo skip 'RT 71022: infinite loop (noauto)'
200+
#?DOES 1
202201
{
203202
my %rt71022;
204203
%rt71022<bughunt> = %rt71022<bughunt>;
@@ -238,6 +237,7 @@ lives_ok { Hash.new("a" => "b") }, 'Hash.new($pair) lives';
238237
# By collective knowledge of #perl6 and @larry, .{ } is actually defined in
239238
# Any
240239
#?rakudo skip 'RT 58372'
240+
#?DOES 3
241241
{
242242
my $x;
243243
lives_ok { $x{'a'} }, 'can index a variable that defaults to Any';
@@ -262,6 +262,7 @@ lives_ok { Hash.new("a" => "b") }, 'Hash.new($pair) lives';
262262

263263
# RT #61412
264264
#?rakudo skip 'binding hash values - RT 61412'
265+
#?DOES 1
265266
{
266267
my %hash;
267268
%hash<foo> := 'bar';

0 commit comments

Comments
 (0)