Changeset 22476 for t

Show
Ignore:
Timestamp:
10/01/08 22:06:01 (2 months ago)
Author:
moritz
Message:

[t] move topic.t to spec/, small HOWTO updates

Location:
t
Files:
1 modified
1 moved

Legend:

Unmodified
Added
Removed
  • t/HOWTO

    r21187 r22476  
    153153C<svn ci> will do: 
    154154 
    155     svn ci -m '[spec] added tests for $frobnicate_feature' path/to/file.t 
     155    svn ci -m '[t/spec] added tests for $frobnicate_feature' path/to/file.t 
    156156 
    157157If you created a new file, you have to call C<svn add> first and set the svn 
     
    159159 
    160160    ./util/add-text-file.sh t/spec/S99-weird/very-weird-features.t 
    161     svn ci -m '[spec] test for very weird features' t/spec/S99-weird/very-weird-features.t 
     161    svn ci -m '[t/spec] test for very weird features' t/spec/S99-weird/very-weird-features.t 
    162162 
    163 Please always include the C<[spec]> marker at the beginning of your commit 
     163Please always include the C<[t/spec]> marker at the beginning of your commit 
    164164messages (or C<[t]> if you didn't modify C<t/spec/>), it helps other to 
    165165identify which part of the repository you changed. 
     166 
     167=cut 
     168 
     169# vim: ft=pod 
  • t/spec/S12-methods/topic.t

    r20490 r22476  
    55# L<A12/"Declaration of Methods" /methods do not set the topic now/> 
    66# (This is an an "update" section.) 
     7# not mentioned explicitly in S12, but still true. 
    78 
    89plan 2; 
     
    1617{ 
    1718    my Foo $foo .= new; 
    18     dies_ok { $foo.no_topic() }, '$_ is not set in methods...', :todo<bug>; 
     19    #?pugs todo 'outdated semantics' 
     20    dies_ok { $foo.no_topic() }, '$_ is not set in methods...'; 
    1921} 
    2022