1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
#!perl -T
use strict;
use warnings;
use Test::More tests => 10;
use lib 't';
use Util;
use File::Next;
# use Test::Differences;
# eq_or_diff \@got, [qw( a b c )], "testing arrays";
JUST_A_FILE: {
my $iter = File::Next::files( 't/pod.t' );
isa_ok( $iter, 'CODE' );
my @actual = slurp( $iter );
my @expected = qw(
t/pod.t
);
sets_match( \@actual, \@expected, 'JUST_A_FILE' );
}
NO_PARMS: {
my $iter = File::Next::files( 't/swamp' );
isa_ok( $iter, 'CODE' );
my @actual = slurp( $iter );
my @expected = qw(
t/swamp/0
t/swamp/Makefile
t/swamp/Makefile.PL
t/swamp/c-header.h
t/swamp/c-source.c
t/swamp/javascript.js
t/swamp/parrot.pir
t/swamp/perl-test.t
t/swamp/perl-without-extension
t/swamp/perl.pl
t/swamp/perl.pm
t/swamp/perl.pod
t/swamp/a/a1
t/swamp/a/a2
t/swamp/b/b1
t/swamp/b/b2
t/swamp/c/c1
t/swamp/c/c2
);
sets_match( \@actual, \@expected, 'NO_PARMS' );
}
MULTIPLE_STARTS: {
my $iter = File::Next::files( 't/swamp/a', 't/swamp/b', 't/swamp/c' );
isa_ok( $iter, 'CODE' );
my @actual = slurp( $iter );
my @expected = qw(
t/swamp/a/a1
t/swamp/a/a2
t/swamp/b/b1
t/swamp/b/b2
t/swamp/c/c1
t/swamp/c/c2
);
sets_match( \@actual, \@expected, 'MULTIPLE_STARTS' );
}
NO_DESCEND: {
my $iter = File::Next::files( {descend_filter => sub {0}}, 't/swamp' );
isa_ok( $iter, 'CODE' );
my @actual = slurp( $iter );
my @expected = qw(
t/swamp/0
t/swamp/Makefile
t/swamp/Makefile.PL
t/swamp/c-header.h
t/swamp/c-source.c
t/swamp/javascript.js
t/swamp/parrot.pir
t/swamp/perl-test.t
t/swamp/perl-without-extension
t/swamp/perl.pl
t/swamp/perl.pm
t/swamp/perl.pod
);
sets_match( \@actual, \@expected, 'NO_DESCEND' );
}
ONLY_FILES_WITH_AN_EXTENSION: {
my $file_filter = sub {
return /^[^.].*\./;
};
my $iter = File::Next::files( {file_filter => $file_filter}, 't/swamp' );
isa_ok( $iter, 'CODE' );
my @actual = slurp( $iter );
my @expected = qw(
t/swamp/Makefile.PL
t/swamp/c-header.h
t/swamp/c-source.c
t/swamp/javascript.js
t/swamp/parrot.pir
t/swamp/perl-test.t
t/swamp/perl.pl
t/swamp/perl.pm
t/swamp/perl.pod
);
sets_match( \@actual, \@expected, 'ONLY_FILES_WITH_AN_EXTENSION' );
}
|