From: Brian Cassidy Date: Mon, 28 Nov 2005 13:49:37 +0000 (+0000) Subject: fixed pod X-Git-Tag: v0.03~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Credential-HTTP-Proxy.git;a=commitdiff_plain;h=ed18d7e635b8fcf559196eb6f72fd28e5f5410f6 fixed pod added pod and pod_coverage tests --- diff --git a/lib/Catalyst/Plugin/Authentication/Credential/TypeKey.pm b/lib/Catalyst/Plugin/Authentication/Credential/TypeKey.pm index 3dc457e..c3c4f7e 100644 --- a/lib/Catalyst/Plugin/Authentication/Credential/TypeKey.pm +++ b/lib/Catalyst/Plugin/Authentication/Credential/TypeKey.pm @@ -166,13 +166,13 @@ L. =head1 METHODS -=item authenticate_typekey %parameters +=head3 authenticate_typekey %parameters -=item authenticate_typekey +=head3 authenticate_typekey -=item EXTENDED METHODS +=head3 EXTENDED METHODS -=item setup +=head3 setup Fills the config with defaults. diff --git a/t/pod.t b/t/pod.t new file mode 100644 index 0000000..1647794 --- /dev/null +++ b/t/pod.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/pod_coverage.t b/t/pod_coverage.t new file mode 100644 index 0000000..d91be5e --- /dev/null +++ b/t/pod_coverage.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();