Changeset 24157

Show
Ignore:
Timestamp:
12/05/08 08:43:25 (5 weeks ago)
Author:
moritz
Message:

[t/spec] some unfudges for rakudo

Location:
t/spec
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-magicals/dollar_bang.t

    r24153 r24157  
    3333my @a; 
    3434try { foo(@a,@a) }; 
    35 #?rakudo skip 'Test $! for truthness' 
    3635ok $!, 'Calling a subroutine with a nonmatching signature sets $!'; 
    3736ok !$called, 'The subroutine also was not called'; 
    3837 
    39 #?rakudo skip 'unimpl $!' 
    4038undefine $!; 
    4139try { 1 / 0 }; 
  • t/spec/S03-operators/precedence.t

    r22919 r24157  
    7070ok((!(1 & 2 | 3) < 2), "ditto"); 
    7171ok(?((1 & 2 ^ 3) < 3), "and also ^"); 
    72 #?rakudo skip "Negate a junction (???)" 
    7372ok(     !(1 & 2 ^ 4) != 3, "blah blah blah"); 
    7473 
  • t/spec/S12-class/attributes.t

    r22286 r24157  
    1818    $c.x 
    1919} 
    20 #?rakudo 1 skip 'get_bool not implemented in exceptions' 
    2120ok($!, 'no public accessor for private attribute'); 
    2221$c.init(); 
  • t/spec/S29-context/eval.t

    r22515 r24157  
    4444 
    4545# L<S04/Exception handlers/Perl 6's eval function only evaluates strings, not blocks.> 
    46 #?rakudo skip 'eval { block } is gone ' 
    4746dies_ok({eval {42}}, 'block eval is gone');