From 8b48d2f7417021a17b81f4e025d515b76b771b44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Quelin?= Date: Thu, 24 May 2007 13:37:44 +0000 Subject: [PATCH] r4988@merlin: jquelin | 2007-05-24 15:23:00 +0200 new tests for pod --- MANIFEST | 2 ++ t/01-pod.t | 25 +++++++++++++++++++++++++ t/02-pod-coverage.t | 25 +++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 t/01-pod.t create mode 100644 t/02-pod-coverage.t diff --git a/MANIFEST b/MANIFEST index 01e2196..18327ba 100644 --- a/MANIFEST +++ b/MANIFEST @@ -7,6 +7,8 @@ MANIFEST META.yml README t/00-load.t +t/01-pod.t +t/02-pod-coverage.t t/10-case_mixer.t t/11-extra_sent.t t/12-letters.t diff --git a/t/01-pod.t b/t/01-pod.t new file mode 100644 index 0000000..fca8dfb --- /dev/null +++ b/t/01-pod.t @@ -0,0 +1,25 @@ +#!perl +# +# This file is part of Acme::Tie::Eleet. +# Copyright (c) 2001-2007 Jerome Quelin, all rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# + +use Test::More; +eval 'use Test::Pod 1.00'; +plan skip_all => 'Test::Pod 1.00 required for testing POD' if $@; +all_pod_files_ok(); diff --git a/t/02-pod-coverage.t b/t/02-pod-coverage.t new file mode 100644 index 0000000..d4aa43c --- /dev/null +++ b/t/02-pod-coverage.t @@ -0,0 +1,25 @@ +#!perl +# +# This file is part of Acme::Tie::Eleet. +# Copyright (c) 2001-2007 Jerome Quelin, all rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# + +use Test::More; +eval "use Test::Pod::Coverage 1.04"; +plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@; +all_pod_coverage_ok(); -- 2.11.4.GIT