Adrian Howard wrote:
>> Its a bug in Test::More.  It only puts itself into the core libraries
>> if it
>> thinks it was shipped with that Perl version.  However I was relying on
>> Module::CoreList and...
>>
>> $ corelist Test::More
>> Test::More  was first released with perl 5.007003
>>
>> Apparently Module::CoreList does it by release date not version.
> 
> You can give it an optional version number, e.g.:
> 
> perl -MModule::CoreList \
>  -e 'print Module::CoreList->first_release(Test::More=>0.62),"\n"' ;
> 5.009003

Ahh, I wasn't clear.  It sorts Perl versions by release date, not by
version.  Thus 5.007003 (2002-Mar-05) comes before 5.006002 (2003-Nov-15).

Reply via email to