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

    r6801 r7190  
    1515    '; 
    1616 
    17     ok $ok, "declaring a sigilless constant using 'constant' works"; 
     17    ok $ok, "declaring a sigilless constant using 'constant' works", :todo<feature>; 
    1818} 
    1919 
     
    2626    '; 
    2727 
    28     ok $ok, "declaring a constant with a sigil using 'constant' works"; 
     28    ok $ok, "declaring a constant with a sigil using 'constant' works", :todo<feature>; 
    2929} 
    3030 
     
    3737    '; 
    3838 
    39     ok $ok, "declaring a sigilless constant with a type specification using 'constant' works"; 
     39    ok $ok, "declaring a sigilless constant with a type specification using 'constant' works", :todo<feature>; 
    4040} 
    4141 
     
    4848    '; 
    4949 
    50     ok $ok, "declaring an Unicode constant using 'constant' works"; 
     50    ok $ok, "declaring an Unicode constant using 'constant' works", :todo<feature>; 
    5151} 
    5252 
     
    6464    '; 
    6565 
    66     is $ok, 3, "a constant declared using 'constant' is actually constant (1)"; 
     66    is $ok, 3, "a constant declared using 'constant' is actually constant (1)", :todo<feature>; 
    6767} 
    6868 
     
    7979    '; 
    8080 
    81     is $ok, 3, "a constant declared using 'constant' is actually constant (2)"; 
     81    is $ok, 3, "a constant declared using 'constant' is actually constant (2)", :todo<feature>; 
    8282} 
    8383 
     
    9494    '; 
    9595 
    96     is $ok, 3, "a constant declared using 'constant' is actually constant (3)"; 
     96    is $ok, 3, "a constant declared using 'constant' is actually constant (3)", :todo<feature>; 
    9797} 
    9898 
     
    109109    '; 
    110110 
    111     is $ok, 3, "a constant declared using 'constant' is actually constant (4)"; 
     111    is $ok, 3, "a constant declared using 'constant' is actually constant (4)", :todo<feature>; 
    112112} 
    113113 
     
    129129    '; 
    130130 
    131     is $ok, 2, "declaring constants using 'my constant' works"; 
     131    is $ok, 2, "declaring constants using 'my constant' works", :todo<feature>; 
    132132} 
    133133 
     
    147147    '; 
    148148 
    149     is $ok, 3, "constants declared by 'my constant' shadow correctly"; 
     149    is $ok, 3, "constants declared by 'my constant' shadow correctly", :todo<feature>; 
    150150} 
    151151 
     
    162162    '; 
    163163 
    164     is $ok, 2, "declaring constants using 'our constant' works"; 
     164    is $ok, 2, "declaring constants using 'our constant' works", :todo<feature>; 
    165165} 
    166166 
     
    177177    '; 
    178178 
    179     is $ok, 2, "declaring constants using 'constant' creates package-scoped vars"; 
     179    is $ok, 2, "declaring constants using 'constant' creates package-scoped vars", :todo<feature>; 
    180180}