Skip to content

Commit bede20a

Browse files
committed
remove fossiled test, sorear++
1 parent 266464f commit bede20a

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

S02-names/symbolic-deref.t

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 36;
5+
plan 35;
66

77
# See L<http://www.nntp.perl.org/group/perl.perl6.language/22858> --
88
# previously, "my $a; say $::("a")" died (you had to s/my/our/). Now, it was
@@ -124,15 +124,11 @@ my $outer = 'outside';
124124
cmp_ok $::("IN"), &infix:<===>, $*IN,
125125
"symbolic dereferentiation of globals without the star works";
126126

127-
# XXX - should be =:= rather than ~~, but &say =:= &say is currently false.:(
128-
#cmp_ok &::("*say"), &infix:<=:=>, &say,
129-
cmp_ok &::("*say"), &infix:<~~>, &say,
130-
"symbolic dereferentiation of global subs works";
131127
#cmp_ok &::("say"), &infix:<=:=>, &say,
132-
cmp_ok &::("say"), &infix:<~~>, &say,
128+
cmp_ok &::("say"), &infix:<===>, &say,
133129
"symbolic dereferentiation of global subs without the star works (1)";
134130

135-
ok &::("true")(42),
131+
ok &::("so")(42),
136132
"symbolic dereferentiation of global subs without the star works (2)";
137133
is &::("truncate")(3.1), 3,
138134
"symbolic dereferentiation of global subs without the star works (3)";

0 commit comments

Comments
 (0)