Changeset 22470 for t

Show
Ignore:
Timestamp:
10/01/08 09:21:40 (2 months ago)
Author:
azawawi
Message:

[t/spec] Fudged S12-methods/indirect_notation.t for rakudo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S12-methods/indirect_notation.t

    r21722 r22470  
    3030 
    3131    is( $o.a(), 'test', "The indirect object notation call without argument 1" ); 
     32#?rakudo skip 'unimpl parse error near $o:' 
    3233    is( (a $o:), 'test', "The indirect object notation call without arguments 2" ); 
    3334} 
     
    4748    my $seed = 1000.rand; 
    4849    is( $o.a( $seed ), $seed, "The indirect object notation call with argument 1" ); 
     50#?rakudo skip 'unimpl parse error near $o:' 
    4951    is( (a $o: $seed), $seed, "The indirect object notation call with arguments 2" ); 
    5052    my $name = 'a';