Show
Ignore:
Timestamp:
05/30/08 23:02:06 (6 months ago)
Author:
charsbar
Message:

Acme-CPANAuthors: tentatively skip a test to do with Parse::CPAN::Authors 2.26 brokenness; 0.03 -> CPAN

Location:
lang/perl/Acme-CPANAuthors/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Acme-CPANAuthors/trunk/Changes

    r12161 r12852  
    11Revision history for Acme-CPANAuthors 
    22 
     30.03 2008/05/30 
     4  - "What's actually broken is Parse::CPAN::Authors 2.26" release 
     5  - tentatively skip a test if Parse::CPAN::Authors 2.26 is loaded. 
     6 
    370.02 2008/05/22 
    4   - YAPC::Asia 2008 hackathon release 
     8  - "YAPC::Asia 2008 hackathon" release 
    59  - made Acme::CPANAuthors::(Specific)->authors context sensitive. 
    610  - better cpan config loading 
  • lang/perl/Acme-CPANAuthors/trunk/Makefile.PL

    r3606 r12852  
    99  ABSTRACT_FROM  => 'lib/Acme/CPANAuthors.pm', 
    1010  PREREQ_PM => { 
    11     'Carp'                      => 0, 
    12     'CPAN::Config'              => 0, 
    13     'Exporter'                  => 0, 
    14     'File::Spec'                => 0, 
    15     'Gravatar::URL'             => 0, 
    16     'Module::Find'              => 0, 
    17     'Parse::CPAN::Authors'      => 0, 
    18     'Parse::CPAN::Packages'     => '2.27', 
    19     'Test::More'                => '0.47', 
    20     'Test::UseAllModules'       => '0.09', 
    21     'URI'                       => 0, 
    22     'Web::Scraper'              => '0.21', 
     11    'Carp'                   => 0, 
     12    'CPAN::Config'           => 0, 
     13    'Exporter'               => 0, 
     14    'File::Spec'             => 0, 
     15    'Gravatar::URL'          => 0, 
     16    'Module::Find'           => 0, 
     17    'Parse::CPAN::Authors'   => 0,  # should be '2.27' in the future 
     18    'Parse::CPAN::Packages'  => '2.27', 
     19    'Test::More'             => '0.47', 
     20    'Test::UseAllModules'    => '0.09', 
     21    'URI'                    => 0, 
     22    'Web::Scraper'           => '0.21', 
    2323  }, 
    2424  ($ExtUtils::MakeMaker::VERSION >= 6.31 
  • lang/perl/Acme-CPANAuthors/trunk/lib/Acme/CPANAuthors.pm

    r11294 r12852  
    66use Acme::CPANAuthors::Utils qw( cpan_authors cpan_packages ); 
    77 
    8 our $VERSION = '0.02'; 
     8our $VERSION = '0.03'; 
    99 
    1010sub new { 
  • lang/perl/Acme-CPANAuthors/trunk/t/01_basic.t

    r3606 r12852  
    2222ok $name =~ /Ishigaki/i; 
    2323 
    24 my $avatar_url = $authors->avatar_url('ISHIGAKI'); 
    25 ok $avatar_url; 
     24SKIP: { 
     25  require Parse::CPAN::Authors; 
     26  if ( $Parse::CPAN::Authors::VERSION == 2.26 ) { 
     27    skip ' Parse::CPAN::Authors 2.26 breaks this test', 1; 
     28  } 
     29  my $avatar_url = $authors->avatar_url('ISHIGAKI'); 
     30  ok $avatar_url; 
     31}