Show
Ignore:
Timestamp:
08/27/08 16:28:24 (4 months ago)
Author:
moritz
Message:

[t/spec] fail() is acutally called flunk()

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-junctions/boolean-context.t

    r22042 r22044  
    3232ok ?(undef ^ -1), 'undef^-1 in boolean context'; 
    3333 
    34 (1|undef && pass '1|undef in boolean context') || fail '1|undef in boolean context'; 
     34(1|undef && pass '1|undef in boolean context') || flunk '1|undef in boolean context'; 
    3535#?rakudo skip 'Junctions and short-circituing operators' 
    3636#?DOES 1 
    3737{ 
    38 (1 & undef && fail '1&undef in boolean context') || pass '1&undef in boolean context'; 
     38(1 & undef && flunk '1&undef in boolean context') || pass '1&undef in boolean context'; 
    3939} 
    40 (1^undef && pass '1^undef in boolean context') || fail '1^undef in boolean context'; 
     40(1^undef && pass '1^undef in boolean context') || flunk '1^undef in boolean context'; 
    4141 
    4242ok !(0 | undef), '0|undef in boolean context'; 
     
    5252#?DOES 3 
    5353{ 
    54     (0 | undef && fail '0|undef in boolean context') || pass '0|undef in boolean context'; 
    55     (0 & undef && fail '0&undef in boolean context') || pass '0&undef in boolean context'; 
    56     (0 ^ undef && fail '0^undef in boolean context') || pass '0^undef in boolean context'; 
     54    (0 | undef && flunk '0|undef in boolean context') || pass '0|undef in boolean context'; 
     55    (0 & undef && flunk '0&undef in boolean context') || pass '0&undef in boolean context'; 
     56    (0 ^ undef && flunk '0^undef in boolean context') || pass '0^undef in boolean context'; 
    5757} 
    5858