According to 
http://www.nntp.perl.org/group/perl.cpan.testers/2009/02/msg3293765.html

the lines that are failing are
(from 
http://github.com/RandalSchwartz/perl-module-file-finder/blob/06054daba44df857bf31e960032a53aa36237b0f/t/04-ffr.t):

    #! perl
    use Test::More;

    BEGIN {
      eval { require File::Find::Rule };
      plan 'skip_all' => 'No File::Find::Rule installed' if $@;
    }

    plan 'no_plan';
    
    BEGIN { use_ok('File::Finder') }

    [ rest of code ]

These lines passed when I wrote them a few years ago.

Is this:
(a) an error in test reporter
(b) an error in my code because this once worked but is now deprecated
(c) an error in my code because this never should have worked

Please explain.

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<mer...@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion

Reply via email to