Changeset 22464 for t

Show
Ignore:
Timestamp:
09/30/08 00:11:32 (2 months ago)
Author:
moritz
Message:

[t/spec] changed order of test to better play with fudging

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S05-modifier/ignorecase.t

    r22463 r22464  
    1212 
    1313=end description 
     14 
     15# tests for inline modifiers 
     16# L<S05/Modifiers/and Unicode-level modifiers can be> 
     17 
     18ok("abcDEFghi" ~~ m/abc (:i def) ghi/, 'Match'); 
     19ok(!( "abcDEFGHI" ~~ m/abc (:i def) ghi/ ), 'Mismatch'); 
     20 
    1421 
    1522#L<S05/Modifiers/"The :i"> 
     
    4249#?rakudo emit =end 
    4350 
    44  
    45 # tests for inline modifiers 
    46 # L<S05/Modifiers/and Unicode-level modifiers can be> 
    47  
    48 ok("abcDEFghi" ~~ m/abc (:i def) ghi/, 'Match'); 
    49 ok(!( "abcDEFGHI" ~~ m/abc (:i def) ghi/ ), 'Mismatch'); 
    50  
    51  
    5251# vim: syn=perl6 sw=4 ts=4 expandtab