Subject: | file_not_empty_ok reports OK if file does not exist! |
# This little test passes, which I think is NOT desired behavior:
use Test::File;
use Test::More tests => 1;
unlink 'no_such_file';
file_not_empty_ok('no_such_file');
__END__
--
- - Martin 'Kingpin' Thurn