App-CPAN-Mini-Visit
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
t/01-App-CPAN-Mini-Visit.t view on Meta::CPAN
my $label = "output";
my $tempfile = tmpnam();
try eval {
capture sub {
App::CPAN::Mini::Visit->run("--output=$tempfile");
} => \$stdout,
\$stderr;
};
catch my $err;
ok( -f $tempfile, "[$label] output file created" );
my @found = map { chomp; $_ } do { local @ARGV = ($tempfile); <> };
is( $stdout, '', "[$label] saw no output on terminal" );
is_deeply( \@found, \@files, "[$label] listing correct" );
}
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.639 second using v1.00-cache-2.02-grep-82fe00e-cpan-da92000dfeb )