make pod tests pass, if rclamp applies my patch.
Marcus Ramberg [Wed, 30 Mar 2005 08:17:23 +0000 (08:17 +0000)]
lib/Catalyst/Base.pm
lib/Catalyst/Test.pm

index abe23e9..a2710e3 100644 (file)
@@ -97,6 +97,8 @@ sub config {
 
 sub process { 1 }
 
+=back
+
 =head1 SEE ALSO
 
 L<Catalyst>.
index 5fe2a0c..eff1a43 100644 (file)
@@ -47,13 +47,15 @@ Test Catalyst applications.
 
 =head2 METHODS
 
-=head3 get
+=over 4
+
+=item get
 
 Returns the content.
 
     my $content = get('foo/bar?test=1');
 
-=head3 request
+=item request
 
 Returns a C<HTTP::Response> object.
 
@@ -93,6 +95,12 @@ sub import {
 
 my $agent;
 
+=item remote_request
+
+Do an actual remote rquest using LWP.
+
+=cut
+
 sub remote_request {
     my $request = shift;
 
@@ -135,6 +143,8 @@ sub remote_request {
     return $agent->request($request);
 }
 
+=back 
+
 =head1 SEE ALSO
 
 L<Catalyst>.