From: Marcus Ramberg Date: Thu, 7 Apr 2005 22:11:52 +0000 (+0000) Subject: updated X-Git-Tag: v0.01~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=commitdiff_plain;h=bfeb5ca092922fe84d69717450e7dd4e7363b070;hp=b2f8df5e44849b00365888e61ce49d8e8c9ef234 updated --- diff --git a/Changes b/Changes index acc0073..45b8add 100644 --- 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 diff --git a/FastMmap.pm b/FastMmap.pm index b367f3a..9eb86da 100644 --- a/FastMmap.pm +++ b/FastMmap.pm @@ -177,8 +177,8 @@ Marcus Ramberg C =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 diff --git a/MANIFEST b/MANIFEST index 7648a77..502141a 100644 --- 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 diff --git a/test.pl b/t/01use.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 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 index 0000000..d91be5e --- /dev/null +++ b/t/03podcoverage.t @@ -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();