Changeset 22434 for t

Show
Ignore:
Timestamp:
09/27/08 16:38:25 (2 months ago)
Author:
azawawi
Message:

[t/spec] reverted the fudging done earlier to unicode.t (azawawi--, moritz++)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-lexical-conventions/unicode.t

    r22422 r22434  
    1010# english ;-) 
    1111ok(try {my $foo; sub foo {}; 1}, "ascii declaration"); 
    12 #?rakudo skip "No applicable candidates found to dispatch to." 
    1312is(try {my $bar = 2; sub id ($x) { $x }; id($bar)}, 2, "evaluation");  
    14  
    15 #?rakudo 20 skip 'unicode: expected USTRINGC' 
    1613 
    1714# umlauts 
     
    6158); 
    6259 
    63 #?rakudo 2 skip 'Parse Error: Statement not terminated properly' 
    6460ok(try { my $पहला = 1; }, "hindi declaration"); 
    6561is(try { my $दूसरा = 2; sub टोटल ($x) { $x + 2 }; टोटल($दूसरा) }, 4, "evaluation"); 
    6662 
    6763# Unicode subs 
    68 #?rakudo skip 'Parse Error: Statement not terminated properly' 
    6964{ 
    7065    my sub äöü () { 42 } 
    7166    is äöü, 42, "Unicode subs with no parameters"; 
    7267} 
    73 #?rakudo skip 'lexically scoped subs' 
    7468{ 
    7569    my sub äöü ($x) { 1000 + $x } 
     
    7872 
    7973# Unicode parameters 
    80 #?rakudo skip 'lexically scoped subs' 
    8174{ 
    8275    my sub abc (:$äöü) { 1000 + $äöü } 
     
    8780 
    8881# Unicode placeholder variables 
    89 #?rakudo skip 'Parse Error: Statement not terminated properly' 
    9082{ 
    9183    is 
     
    9688 
    9789# Unicode methods 
    98 #?rakudo skip "unicode: unexpected USTRINGC" 
    9990{ 
    10091    class Str is also { method äöü { self.ucfirst } };