Changeset 17146

Show
Ignore:
Timestamp:
08/06/08 13:41:28 (5 years ago)
Author:
daisuke
Message:

s/Compile/UseAllModules/g

Location:
lang/perl/Google-Chart/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Google-Chart/trunk/MANIFEST

    r16838 r17146  
    99inc/Module/Install/Win32.pm 
    1010inc/Module/Install/WriteAll.pm 
    11 inc/Test/Compile.pm 
    1211inc/Test/More.pm 
     12inc/Test/UseAllModules.pm 
    1313lib/Google/Chart.pm 
    1414lib/Google/Chart/Axis.pm 
  • lang/perl/Google-Chart/trunk/Makefile.PL

    r16840 r17146  
    3333 
    3434test_requires 'Test::More'; 
    35 test_requires 'Test::Compile'; 
     35test_requires 'Test::UseAllModules'; 
    3636 
    3737auto_include; 
  • lang/perl/Google-Chart/trunk/t/00_compile.t

    r16838 r17146  
    11use strict; 
    2 use Test::More; 
    3 eval { require Test::Compile; Test::Compile->import }; 
    4 if ($@) { 
    5     plan(skip_all => "Test::Compile required for testing compilation: $@"); 
    6 } else { 
    7     Test::Compile::all_pm_files_ok(); 
    8 } 
     2use Test::UseAllModules; 
     3 
     4BEGIN { all_uses_ok() }