Changeset 7190 for t/var/let.t

Show
Ignore:
Timestamp:
09/28/05 23:08:26 (3 years ago)
Author:
autrijus
Message:

r7196@not: autrijus | 2005-09-28 11:04:59 +0300


r7197@not: autrijus | 2005-09-28 11:28:35 +0300

  • beginning of the main pugs cabal file r7198@not: autrijus | 2005-09-28 12:36:41 +0300
  • some more metadata for Pugs.cabal. r7211@not: autrijus | 2005-09-28 21:27:14 +0300
  • releng: normalize and todoize tests. r7221@not: autrijus | 2005-09-29 00:05:29 +0300
  • Remove the unreferenced Pugs.AST.Types.
  • Move the ill-named Pugs.Context back inside Pugs.Types.
  • Reuse its Tolkien quote for the underquoted Pugs.Version.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/var/let.t

    r6603 r7190  
    1717    1; 
    1818  } 
    19   is $a, 23, "let() should not restore the variable, as our block exited succesfully (1)"; 
     19  is $a, 23, "let() should not restore the variable, as our block exited succesfully (1)", :todo<feature>; 
    2020} 
    2121 
     
    4040    let $a = 23; 
    4141    is $a,       23, "let() changed the variable (2-1)"; 
    42     is $get_a(), 23, "let() changed the variable (2-2)"; 
     42    is $get_a(), 23, "let() changed the variable (2-2)", :todo<feature>; 
    4343    1; 
    4444  } 
    45   is $a, 23, "let() should not restore the variable, as our block exited succesfully (2)"; 
     45  is $a, 23, "let() should not restore the variable, as our block exited succesfully (2)", :todo<feature>; 
    4646} 
    4747