Changeset 22460 for t

Show
Ignore:
Timestamp:
09/29/08 22:58:06 (2 months ago)
Author:
moritz
Message:

[t] move newline.t to spec/, and fudge for rakudo

Location:
t/spec/S05-metachars
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • t/spec/S05-metachars/newline.t

    r21719 r22460  
    2424ok("\o15" ~~ m/\n/, 'CR'); 
    2525ok("\x85" ~~ m/\n/, 'NEL'); 
     26#?rakudo todo 'Unicode' 
    2627ok("\x2028" ~~ m/\n/, 'LINE SEP'); 
    2728 
     
    3435ok(!( "\o15" ~~ m/\N/ ), 'not CR'); 
    3536ok(!( "\x85" ~~ m/\N/ ), 'not NEL'); 
     37#?rakudo todo 'Unicode' 
    3638ok(!( "\x2028" ~~ m/\N/ ), 'not LINE SEP'); 
    3739