Changeset 248
- Timestamp:
- 05/06/07 00:51:21 (2 years ago)
- Files:
-
- trunk/src/ingy/Test-Base/README (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ingy/Test-Base/README
r227 r248 8 8 package MyProject::Test; 9 9 use Test::Base -Base; 10 10 11 11 use MyProject; 12 12 13 13 package MyProject::Test::Filter; 14 14 use Test::Base::Filter -base; … … 22 22 # t/sample.t 23 23 use MyProject::Test; 24 24 25 25 plan tests => 1 * blocks; 26 26 27 27 run_is input => 'expected'; 28 28 … … 30 30 s/my/your/; 31 31 } 32 32 33 33 __END__ 34 34 35 35 === Test one (the name of the test) 36 36 --- input my_filter local_filter
