Filesys-Notify-KQueue
view release on metacpan or search on metacpan
use Test::SharedFork;
use File::Find;
use File::Path qw/make_path remove_tree/;
use parent qw/Exporter/;
our @EXPORT_OK = qw/create_paths touch delete_paths cmp_files get_filelist/;
our @EXPORT = qw/test_fork parent child/;
sub import {
my $class = shift;
$class->export_to_level(1, @_);
strict->import;
warnings->import;
utf8->import;
Test::More->import;
}
sub create_paths {
my @test_paths = @_;
my @dirs = sort { length($a =~ m{/}g) < length($b =~ m{/}g) } grep { $_ =~ m{/$} } @test_paths;
my @files = grep { $_ !~ m{/$} } @test_paths;
( run in 0.453 second using v1.01-cache-2.11-cpan-299005ec8e3 )