Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unfudge some tests for rakudo
  • Loading branch information
moritz committed Feb 22, 2013
1 parent 6bec6d3 commit 84ac9e6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion S05-modifier/counted.t
Expand Up @@ -154,7 +154,6 @@ ok(!( $data ~~ m:7th/fo+/ ), 'No match 7th');


# Substitutions...
#?rakudo skip 's{} = ...'
{
my $try = $data;
ok(!( $try ~~ s:0th{fo+}=q{bar} ), "Can't substitute 0th" );
Expand Down
1 change: 0 additions & 1 deletion S06-multi/proto.t
Expand Up @@ -43,7 +43,6 @@ is(foo(42), 1, 'dispatch with no possible candidates fell back to proto');
}

# more similar tests
#?rakudo skip 'custom ops'
{
proto prefix:<moose> ($arg) { $arg + 1 }
is (moose 3), 4, "proto definition of prefix:<moose> works";
Expand Down
1 change: 0 additions & 1 deletion S12-methods/qualified.t
Expand Up @@ -32,7 +32,6 @@ my $child = Child.new;
is( $child.myself, $child, 'Qualified method calls should use the original self' );

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

# vim: ft=perl6

0 comments on commit 84ac9e6

Please sign in to comment.