Changeset 2106

Show
Ignore:
Timestamp:
04/25/08 19:58:33 (19 months ago)
Author:
mpaschal
Message:

Don't need to define tests in BEGIN if we're not calculating test count from it

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-36/t/13-dirify.t

    r2105 r2106  
    1111use MT::Util; 
    1212 
    13 my @tests; 
    14 BEGIN { 
    15     @tests = ( 
    16         { 
    17             text => 'Siegfried & Roy', 
    18             iso  => 'siegfried_roy', 
    19             utf8 => 'siegfried_roy', 
    20         }, 
    21         { 
    22             text => 'Cauchy-Schwartz Inequality', 
    23             iso  => 'cauchy-schwartz_inequality', 
    24             utf8 => 'cauchy-schwartz_inequality', 
    25         }, 
    26         { 
    27             text => "M\303\272m", 
    28             utf8 => 'mum', 
    29         }, 
    30     ); 
    31 } 
     13my @tests = ( 
     14    { 
     15        text => 'Siegfried & Roy', 
     16        iso  => 'siegfried_roy', 
     17        utf8 => 'siegfried_roy', 
     18    }, 
     19    { 
     20        text => 'Cauchy-Schwartz Inequality', 
     21        iso  => 'cauchy-schwartz_inequality', 
     22        utf8 => 'cauchy-schwartz_inequality', 
     23    }, 
     24    { 
     25        text => "M\303\272m", 
     26        utf8 => 'mum', 
     27    }, 
     28); 
    3229 
    3330use Test::More tests => 5;