File-Find-Rule

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.33 Monday 19th September, 2011
        Fixes the case where name("foo(*") hits an error with mismatched
        parentheis.  Reported by Jan Engelhardt.

0.32 Saturday 28th November, 2009
	Rework the referencing of anyonymous subroutines internally,
	closes RT#46599 (Reported by Kevin Ryde)

0.31 Friday 27th November 2009
	Move to Makefile.PL
	use Test::Differences in the testsuite if available.
	Rearrange the testsuite so you don't keep tripping over yourself.
	Dropped 5.00503 backwards compatibility, allows some 5.6isms and
	dropping the shonky Cwd code.
	All taint 'bugs' are now the same as the behaviour of File::Find,
	documentation has been added to describe this.


0.30 Wednesday 1st June, 2006
	Made './//././././///.//././/////./blah' be treated the same 
        as './blah' (it gets turned into 'blah')

t/File-Find-Rule.t  view on Meta::CPAN

#!perl -w
#       $Id$

use strict;
use Test::More tests => 46;
use File::Spec;

if (eval { require Test::Differences; 1 }) {
    no warnings;
    *is_deeply = *Test::Differences::eq_or_diff;
}


my $class;
my @tests = qw( testdir/File-Find-Rule.t testdir/findrule.t );
BEGIN {
    $class = 'File::Find::Rule';
    use_ok($class)
}



( run in 0.652 second using v1.01-cache-2.11-cpan-df04353d9ac )