Skip to content

Commit ddb7f4f

Browse files
committed
unfudge passing tests, tag with RT#
1 parent 3e8347b commit ddb7f4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

S09-autovivification/autovivification.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,19 @@ plan 42;
5858
is ~@array, " 1 2 3", "autovivification of an array element to an array by &push";
5959
}
6060

61-
#?rakudo skip 'autoviv with push/unshift'
61+
#RT #84000
6262
#?niecza skip 'Unable to resolve method push in class Any'
6363
#?pugs todo
6464
{
6565
my %hash;
6666

6767
push %hash<key>, 1,2,3;
68-
is ~%hash, "key\t1 2 3\n", "autovivification of an hash element to an array by &push";
68+
is ~%hash, "key\t1 2 3", "autovivification of an hash element to an array by &push";
6969
}
7070

7171
# Simple hash autovivification
7272
# Actually, that first test passes, but I can't figure out how to skip just
7373
# the next two.
74-
#?rakudo skip "Error Msg: get_pmc_keyed() not implemented in class 'Undef'"
7574
{
7675
my $hashref;
7776
ok $hashref !~~ Hash, "uninitialized variable is not a Hash (1)";
@@ -80,6 +79,7 @@ plan 42;
8079
is $hashref<key>, 23, "hash element assignment worked";
8180
#?niecza skip 'No value for parameter \$other in CORE Any.isa'
8281
#?pugs skip 'isa multi variant'
82+
#?rakudo skip 'isa multi variant'
8383
ok $hashref.isa !~~ Hash, "uninitialized variable was autovivified to a hash (1)";
8484
}
8585

0 commit comments

Comments
 (0)