diff options
author | James E Keenan <jkeenan@cpan.org> | 2012-12-02 08:25:42 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2012-12-07 20:05:01 -0500 |
commit | bb52f720b393a99bfdff2d2303fb399ef97473a6 (patch) | |
tree | f6523dba5698675afad95bd293347422f6084b4f /pod/perlhack.pod | |
parent | 8a5eedb005f7c37f37bea546d40741b5a9ccfad2 (diff) | |
download | perl-bb52f720b393a99bfdff2d2303fb399ef97473a6.tar.gz |
Adjust MANIFEST, Makefiles, test harnesses, documentation, etc., aware of new
directory t/opbasic.
For RT #115838
Diffstat (limited to 'pod/perlhack.pod')
-rw-r--r-- | pod/perlhack.pod | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 0385676b1b..8332e6ebca 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -708,20 +708,19 @@ Protocol|http://testanything.org>. =over 4 -=item * F<t/base> and F<t/comp> +=item * F<t/base>, F<t/comp> and F<t/opbasic> Since we don't know if require works, or even subroutines, use ad hoc -tests for these two. Step carefully to avoid using the feature being -tested. +tests for these three. Step carefully to avoid using the feature being +tested. Tests in F<t/opbasic>, for instance, have been placed there rather +than in F<t/op> because they test functionality which F<t/test.pl> presumes +has already been demonstrated to work. =item * F<t/cmd>, F<t/run>, F<t/io> and F<t/op> Now that basic require() and subroutines are tested, you can use the F<t/test.pl> library. -Note, however, that some test scripts still avoid F<t/test.pl> if they test -features that F<t/test.pl> relies on heavily. - You can also use certain libraries like Config conditionally, but be sure to skip the test gracefully if it's not there. |