- Timestamp:
- 10/01/08 22:06:01 (2 months ago)
- Location:
- t
- Files:
-
- 1 modified
- 1 moved
-
HOWTO (modified) (2 diffs)
-
spec/S12-methods/topic.t (moved) (moved from t/oo/methods/topic.t) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/HOWTO
r21187 r22476 153 153 C<svn ci> will do: 154 154 155 svn ci -m '[ spec] added tests for $frobnicate_feature' path/to/file.t155 svn ci -m '[t/spec] added tests for $frobnicate_feature' path/to/file.t 156 156 157 157 If you created a new file, you have to call C<svn add> first and set the svn … … 159 159 160 160 ./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.t161 svn ci -m '[t/spec] test for very weird features' t/spec/S99-weird/very-weird-features.t 162 162 163 Please always include the C<[ spec]> marker at the beginning of your commit163 Please always include the C<[t/spec]> marker at the beginning of your commit 164 164 messages (or C<[t]> if you didn't modify C<t/spec/>), it helps other to 165 165 identify which part of the repository you changed. 166 167 =cut 168 169 # vim: ft=pod -
t/spec/S12-methods/topic.t
r20490 r22476 5 5 # L<A12/"Declaration of Methods" /methods do not set the topic now/> 6 6 # (This is an an "update" section.) 7 # not mentioned explicitly in S12, but still true. 7 8 8 9 plan 2; … … 16 17 { 17 18 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...'; 19 21 } 20 22
