updated
Marcus Ramberg [Thu, 7 Apr 2005 22:11:52 +0000 (22:11 +0000)]
Changes
FastMmap.pm
MANIFEST
t/01use.t [moved from test.pl with 100% similarity]
t/02pod.t [new file with mode: 0644]
t/03podcoverage.t [new file with mode: 0644]

diff --git a/Changes b/Changes
index acc0073..45b8add 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::Session::FastMmap.
 
 0.08  Xxx Xxx 00 00:00:00 2005
+        - Cleaned docs
+        - Added POD tests.
         - Fixed arguments to Cache::FastMmap.
           IMPORTANT: The config parmeters has changed, backwards incompatible.
 0.07  Wed Mar 28 21:17:00 2005
index b367f3a..9eb86da 100644 (file)
@@ -177,8 +177,8 @@ Marcus Ramberg C<mramberg@cpan.org>
 
 =head1 COPYRIGHT
 
-This program is free software, you can redistribute it and/or modify it under
-the same terms as Perl itself.
+This program is free software, you can redistribute it and/or modify it
+under the same terms as Perl itself.
 
 =cut
 
index 7648a77..502141a 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -4,4 +4,6 @@ Makefile.PL
 MANIFEST                       This list of files
 META.yml
 README
-test.pl
+t/01use.t
+t/02pod.t
+t/03podcoverage.t
similarity index 100%
rename from test.pl
rename to t/01use.t
diff --git a/t/02pod.t b/t/02pod.t
new file mode 100644 (file)
index 0000000..1647794
--- /dev/null
+++ b/t/02pod.t
@@ -0,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod 1.14";
+plan skip_all => 'Test::Pod 1.14 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_files_ok();
diff --git a/t/03podcoverage.t b/t/03podcoverage.t
new file mode 100644 (file)
index 0000000..d91be5e
--- /dev/null
@@ -0,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_coverage_ok();