ignore vim backup files
authorYves Orton <yves.orton@booking.com>
Fri, 31 Jan 2014 13:31:24 +0000 (21:31 +0800)
committerYves Orton <yves.orton@booking.com>
Fri, 31 Jan 2014 13:31:24 +0000 (21:31 +0800)
Having tests fail because vim created a ~ file for something is just
annoying.

t/porting/readme.t

index 621643f..cbb2fe8 100644 (file)
@@ -14,7 +14,7 @@ require 't/test.pl';
 
 open(my $fh, '<', 'Porting/README.pod') or die("Can't open Porting/README.pod: $!");
 
-my @porting_files = glob("Porting/*");
+my @porting_files = grep { !/~\z/ } glob("Porting/*");
 # It seems that dying here is nicer than having several dozen failing tests
 # later.  But that assumes one will see the message from die.
 die "Can't get contents of Porting/ directory.\n" unless @porting_files > 1;