File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,20 +58,19 @@ plan 42;
58
58
is ~ @ array , " 1 2 3" , " autovivification of an array element to an array by & push" ;
59
59
}
60
60
61
- # ?rakudo skip 'autoviv with push/unshift'
61
+ # RT #84000
62
62
# ?niecza skip 'Unable to resolve method push in class Any'
63
63
# ?pugs todo
64
64
{
65
65
my % hash ;
66
66
67
67
push % hash <key >, 1 ,2 ,3 ;
68
- is ~ % hash , " key\t 1 2 3\n " , " autovivification of an hash element to an array by & push" ;
68
+ is ~ % hash , " key\t 1 2 3" , " autovivification of an hash element to an array by & push" ;
69
69
}
70
70
71
71
# Simple hash autovivification
72
72
# Actually, that first test passes, but I can't figure out how to skip just
73
73
# the next two.
74
- # ?rakudo skip "Error Msg: get_pmc_keyed() not implemented in class 'Undef'"
75
74
{
76
75
my $ hashref ;
77
76
ok $ hashref ! ~~ Hash , " uninitialized variable is not a Hash (1)" ;
@@ -80,6 +79,7 @@ plan 42;
80
79
is $ hashref <key >, 23 , " hash element assignment worked" ;
81
80
# ?niecza skip 'No value for parameter \$other in CORE Any.isa'
82
81
# ?pugs skip 'isa multi variant'
82
+ # ?rakudo skip 'isa multi variant'
83
83
ok $ hashref . isa ! ~~ Hash , " uninitialized variable was autovivified to a hash (1)" ;
84
84
}
85
85
You can’t perform that action at this time.
0 commit comments