diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-07-20 16:22:35 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-22 14:54:29 +0000 |
commit | edd5bad5e1e973c1d7eba87bcecdd2cea187918e (patch) | |
tree | f3461f752b9e250b8f2646a41c635421ad2e1941 /lib/Test.pm | |
parent | e378c047dd913f3f75f4b040edf9593573737085 (diff) | |
download | perl-edd5bad5e1e973c1d7eba87bcecdd2cea187918e.tar.gz |
Getting rid of the expected "UNEXPECTEDLY SUCCEEDED"
Message-ID: <20010720202235.O4498@blackrider>
p4raw-id: //depot/perl@11441
Diffstat (limited to 'lib/Test.pm')
-rw-r--r-- | lib/Test.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Test.pm b/lib/Test.pm index 77728bc323..dcc5f68698 100644 --- a/lib/Test.pm +++ b/lib/Test.pm @@ -9,7 +9,7 @@ use vars (qw($VERSION @ISA @EXPORT @EXPORT_OK $ntest $TestLevel), #public-ish qw($TESTOUT $ONFAIL %todo %history $planned @FAILDETAIL)#private-ish ); -$VERSION = '1.17_00'; +$VERSION = '1.18'; require Exporter; @ISA=('Exporter'); @@ -64,6 +64,9 @@ Test - provides a simple framework for writing test scripts =head1 DESCRIPTION +B<STOP!> If you are writing a new test, we I<highly suggest> you use +the new Test::Simple and Test::More modules instead. + L<Test::Harness|Test::Harness> expects to see particular output when it executes tests. This module aims to make writing proper test scripts just a little bit easier (and less error prone :-). @@ -436,6 +439,8 @@ L<Test::Simple>, L<Test::More>, L<Test::Harness>, L<Devel::Cover> L<Test::Unit> is an interesting alternative testing library. +L<Pod::Tests> and L<SelfTest> let you embed tests in code. + =head1 AUTHOR |