Tweak 00compile.t to avoid splatting a DIAG over core perl's
[p5sagit/p5-mst-13.2.git] / lib / Test / Harness / Assert.pm
index 5321def..09912ba 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Assert.pm,v 1.2 2002/04/26 05:12:27 schwern Exp $
+# $Id: Assert.pm,v 1.3 2003/09/11 15:57:29 andy Exp $
 
 package Test::Harness::Assert;
 
@@ -6,7 +6,7 @@ use strict;
 require Exporter;
 use vars qw($VERSION @EXPORT @ISA);
 
-$VERSION = '0.01';
+$VERSION = '0.02';
 
 @ISA = qw(Exporter);
 @EXPORT = qw(assert);
@@ -30,11 +30,9 @@ A simple assert routine since we don't have Carp::Assert handy.
 
 B<For internal use by Test::Harness ONLY!>
 
-=head2 Functions
+=head1 FUNCTIONS
 
-=over 4
-
-=item B<assert>
+=head2 C<assert()>
 
   assert( EXPR, $name );
 
@@ -57,7 +55,7 @@ sub assert ($;$) {
 
 =head1 AUTHOR
 
-Michael G Schwern E<lt>schwern@pobox.comE<gt>
+Michael G Schwern C<< <schwern@pobox.com> >>
 
 =head1 SEE ALSO