The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Testophile;

use v5.8;

use File::Spec::Functions   qw( catpath         );
use Symbol                  qw( qualify_to_ref  );

use Test::More tests => 3;

BEGIN
{
    mkdir './foo';
    mkdir './foo/etc';
    mkdir './bar';
    mkdir './bar/etc';
}

END
{
    rmdir './foo/etc';
    rmdir './foo';
    rmdir './bar/etc';
    rmdir './bar';
}

require_ok FindBin::libs;

FindBin::libs->import
(
    qw
    (
        base=foo
        subdir=etc
        subonly
        export=etc
        noappend
    )
);

note 'First pass has only foo/etc:', explain \@etc;

ok 1 == @etc,   'Found one item in @etc';


FindBin::libs->import
(
    qw
    (
        base=bar
        subdir=etc
        subonly
        export=etc
        noappend
    )
);

note 'Second pass hash only bar/etc:', explain \@etc;

ok 1 == @etc, 'Found two items in @etc';

__END__