Changeset 7190 for t/var/is_readonly.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/is_readonly.t

    r6755 r7190  
    2020    is $a, 42, "binding the variable now works"; 
    2121 
    22     dies_ok { $a := 17 }, "but binding it again does not work"; 
     22    dies_ok { $a := 17 }, "but binding it again does not work", :todo<feature>; 
    2323} 
    2424 
     
    2828 
    2929    $a := 42; 
    30     ok (try{ exists $a }), "exists() returns true now"; 
     30    ok (try{ exists $a }), "exists() returns true now", :todo<feature>; 
    3131} 
    3232 
     
    3434    my $a = 3; 
    3535 
    36     ok (try{ exists $a }), "exists() on a plain normal initialized variable returns true"; 
     36    ok (try{ exists $a }), "exists() on a plain normal initialized variable returns true", :todo<feature>; 
    3737}