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/assigning_refs.t

    r6659 r7190  
    2121  my @array    = ($arrayref); 
    2222 
    23   is +@array, 1, '@array = ($arrayref) does not flatten the arrayref'; 
     23  is +@array, 1, '@array = ($arrayref) does not flatten the arrayref', :todo<bug>; 
    2424} 
    2525 
     
    2828  my @array    = $arrayref; 
    2929 
    30   is +@array, 1, '@array = $arrayref does not flatten the arrayref'; 
     30  is +@array, 1, '@array = $arrayref does not flatten the arrayref', :todo<bug>; 
    3131} 
    3232 
     
    3737  my %hash    = ($hashref,); 
    3838 
    39   is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref'; 
     39  is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref', :todo<bug>; 
    4040} 
    4141 
     
    4444  my %hash    = ($hashref); 
    4545 
    46   is +%hash, 1, '%hash = ($hashref) does not flatten the hashref'; 
     46  is +%hash, 1, '%hash = ($hashref) does not flatten the hashref', :todo<bug>; 
    4747} 
    4848 
     
    5151  my %hash    = $hashref; 
    5252 
    53   is +%hash, 1, '%hash = $hashref does not flatten the hashref'; 
     53  is +%hash, 1, '%hash = $hashref does not flatten the hashref', :todo<bug>; 
    5454} 
    5555