Changeset 22450 for t

Show
Ignore:
Timestamp:
09/29/08 16:39:54 (2 months ago)
Author:
moritz
Message:

[t/spec] fix nearly all broken smartlinks, two remain

Location:
t/spec
Files:
4 modified

Legend:

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

    r22044 r22450  
    33plan 37; 
    44 
    5 # L<S03/Junctive Operators/> 
     5# L<S03/Junctive operators/> 
    66 
    77ok ?any(1..2), 'any(1..2) in boolean context'; 
  • t/spec/S03-operators/context-forcers.t

    r22370 r22450  
    7979} 
    8080 
    81 # L<S03/Changes to Perl 5 operators/"-TERM" "coerced to numeric"> 
    82 # numeric (-) context 
     81# L<S03/Symbolic unary precedence/"prefix:<->"> 
    8382{ 
    8483    my $a = '2 is my favorite number'; 
     
    139138} 
    140139 
    141 # L<S03/Changes to Perl 5 operators/"!TERM" "coerced to boolean"> 
    142 # ! boolean context 
     140# L<S03/Symbolic unary precedence/"prefix:<!>"> 
    143141{ 
    144142    my $a = ''; 
  • t/spec/S03-operators/misc.t

    r22123 r22450  
    5252# Bit Stitching 
    5353 
    54 # L<S03/Tight or precedence/short-circuiting inclusive-or> 
     54# L<S03/Tight or precedence/short-circuit inclusive-or> 
    5555is(2 || 3, 2, "|| returns first true value"); 
    5656ok(!(defined( 0 || undef)), "|| returns last false value of list?"); 
  • t/spec/S03-operators/smartmatch.t

    r22293 r22450  
    1818 
    1919#L<<S03/"Smart matching"/Any Code:($) item sub truth>> 
    20 #L<<S03/"Smart matching"/Any Code:() item sub truth>> 
    2120{ 
    2221    sub uhuh { 1 }