From: Dobrica Pavlinusic Date: Mon, 12 Nov 2007 22:00:41 +0000 (+0000) Subject: r204@brr: dpavlin | 2007-11-12 23:00:24 +0100 X-Git-Url: http://git.rot13.org/?p=perl-cwmp.git;a=commitdiff_plain;h=ca6ef25dcfcb37bd49839770139c8568de69471c r204@brr: dpavlin | 2007-11-12 23:00:24 +0100 - add installation of Test::Pod::Coverage for developers - clean queue on make clean git-svn-id: https://perl-cwmp.googlecode.com/svn/trunk@195 836a5e1a-633d-0410-964b-294494ad4392 --- diff --git a/Makefile.PL b/Makefile.PL index 7e975c4..9896774 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -42,9 +42,18 @@ features( ], ); +features( + 'Pod coverage tests (for developers)' => [ + -default => 0, + recommends('Test::Pod::Coverage'), + ], +); + +; + my_targets(); -clean_files('dump/* yaml state.db html t/var/*'); +clean_files('dump/* yaml state.db html t/var/* queue'); auto_install;