@@ -, +, @@ updates --- t/00-check-atomic-updates.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/t/00-check-atomic-updates.t +++ a/t/00-check-atomic-updates.t @@ -31,7 +31,9 @@ sub wanted { foreach my $f (@files) { next if $f eq 'skeleton.pl'; - unlike( $f, qr/.*pl$/, "check for unhandled atomic updates: $f" ); + next if $f eq 'README'; + next if $f eq '.'; + like( $f, qr/.*pl$/, "check for unhandled atomic updates: $f" ); } done_testing(); --