Changeset 408

Show
Ignore:
Timestamp:
07/18/07 00:08:19 (1 year ago)
Author:
miya
Message:

Parse::Apache::ServerStatus::Extended: fix t/perlcritic.t.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • library/perl/trunk/Parse-Apache-ServerStatus-Extended/Changes

    r400 r408  
    11Revision history for Parse-Apache-ServerStatus-Extended 
    22 
    3 0.0.1  Mon Jul  9 15:35:29 2007 
     30.02   Tue Jul 17 23:58:00 2007 
     4       Fix t/perlcritic.t 
     5 
     60.01   Mon Jul  9 15:35:29 2007 
    47       Initial release. 
    58 
  • library/perl/trunk/Parse-Apache-ServerStatus-Extended/MANIFEST

    r400 r408  
    11Changes 
    2 MANIFEST 
    3 META.yml # Will be created by "make dist" 
     2inc/Module/AutoInstall.pm 
     3inc/Module/Install.pm 
     4inc/Module/Install/AutoInstall.pm 
     5inc/Module/Install/Base.pm 
     6inc/Module/Install/Can.pm 
     7inc/Module/Install/Fetch.pm 
     8inc/Module/Install/Include.pm 
     9inc/Module/Install/Makefile.pm 
     10inc/Module/Install/Metadata.pm 
     11inc/Module/Install/Win32.pm 
     12inc/Module/Install/WriteAll.pm 
     13lib/Parse/Apache/ServerStatus/Extended.pm 
    414Makefile.PL 
     15MANIFEST                        This list of files 
     16META.yml 
    517README 
    6 lib/Parse/Apache/ServerStatus/Extended.pm 
    718t/00.load.t 
    819t/perlcritic.t 
  • library/perl/trunk/Parse-Apache-ServerStatus-Extended/lib/Parse/Apache/ServerStatus/Extended.pm

    r407 r408  
    66use base qw( Parse::Apache::ServerStatus ); 
    77 
    8 our $VERSION = '0.01'; 
     8our $VERSION = '0.02'; 
    99use 5.8.1; 
    1010 
  • library/perl/trunk/Parse-Apache-ServerStatus-Extended/t/perlcritic.t

    r400 r408  
    11#!perl 
    22 
    3 if (!require Test::Perl::Critic) { 
     3use Test::More; 
     4 
     5eval { require Test::Perl::Critic }; 
     6if ( $@ ) { 
    47    Test::More::plan( 
    58        skip_all => "Test::Perl::Critic required for testing PBP compliance"