Skip to content

Commit 84ac9e6

Browse files
committed
unfudge some tests for rakudo
1 parent 6bec6d3 commit 84ac9e6

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

S05-modifier/counted.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ ok(!( $data ~~ m:7th/fo+/ ), 'No match 7th');
154154

155155

156156
# Substitutions...
157-
#?rakudo skip 's{} = ...'
158157
{
159158
my $try = $data;
160159
ok(!( $try ~~ s:0th{fo+}=q{bar} ), "Can't substitute 0th" );

S06-multi/proto.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ is(foo(42), 1, 'dispatch with no possible candidates fell back to proto');
4343
}
4444

4545
# more similar tests
46-
#?rakudo skip 'custom ops'
4746
{
4847
proto prefix:<moose> ($arg) { $arg + 1 }
4948
is (moose 3), 4, "proto definition of prefix:<moose> works";

S12-methods/qualified.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ my $child = Child.new;
3232
is( $child.myself, $child, 'Qualified method calls should use the original self' );
3333

3434
my $consumer = Consumer.new;
35-
#?rakudo skip "qualified method calls with roles don't preserve original self"
3635
is( $consumer.myself, $consumer, 'Qualified method calls should use the original self' );
3736

3837
# vim: ft=perl6

0 commit comments

Comments
 (0)