Changeset 13911 for lang/perl/Moxy

Show
Ignore:
Timestamp:
06/14/08 15:35:09 (5 years ago)
Author:
tokuhirom
Message:

some tests moved to xt/

Location:
lang/perl/Moxy/branches/hsw
Files:
1 added
1 modified
3 moved

Legend:

Unmodified
Added
Removed
  • lang/perl/Moxy/branches/hsw/Makefile.PL

    r13910 r13911  
    22use warnings; 
    33use inc::Module::Install; 
     4 
     5{ 
     6    no warnings 'redefine'; 
     7    *recommends_hack = $Module::Install::VERSION > 0.70 ? 
     8        sub { recommends(@_); $_[0] } : 
     9        \&recommends; 
     10} 
    411 
    512name("Moxy"); 
     
    2835    'Better Encoding detection' => [ 
    2936        -default => 0, 
    30         recommends('Encode::Detect', 1.0), 
     37        recommends_hack('Encode::Detect', 1.0), 
    3138    ], 
    3239    'POD Testing' => [ 
    3340        -default => 0, 
    34         recommends('Test::Pod'), 
    35         recommends('Test::Pod::Coverage'), 
     41        recommends_hack('Test::Pod'), 
     42        recommends_hack('Test::Pod::Coverage'), 
    3643    ], 
    3744); 
    3845 
    3946tests 't/*.t t/*/*.t t/*/*/*.t'; 
     47 
     48author_tests 'xt'; 
    4049 
    4150auto_include;