]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - t/lib/App/Rgit/TestUtils.pm
Switch qw delimiters to <>
[perl/modules/rgit.git] / t / lib / App / Rgit / TestUtils.pm
index 321f96474b6972f69f65ec0b490a6931dabd95d1..b736a5d6c0001171a0b72bde2eb6ca35628b5072 100644 (file)
@@ -3,10 +3,10 @@ package App::Rgit::TestUtils;
 use strict;
 use warnings;
 
-use Cwd        qw/abs_path/;
-use File::Temp qw/tempfile/;
+use Cwd        qw<abs_path>;
+use File::Temp qw<tempfile>;
 use File::Spec (); # curdir, catfile
-use POSIX      qw/WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG/;
+use POSIX      qw<WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG>;
 
 BEGIN {
  no warnings 'redefine';
@@ -16,9 +16,9 @@ BEGIN {
  *WTERMSIG    = sub { shift() & 127 } unless eval { WTERMSIG(0);    1 };
 }
 
-use base qw/Exporter/;
+use base qw<Exporter>;
 
-our @EXPORT_OK = (qw/can_run_git/);
+our @EXPORT_OK = (qw<can_run_git>);
 
 sub can_run_git {
  my ($fh, $filename) = tempfile(UNLINK => 1);
@@ -32,7 +32,7 @@ TRY:
    'version',
   );
 
-  my $git = File::Spec->catfile(File::Spec->curdir, qw/t bin git/);
+  my $git = File::Spec->catfile(File::Spec->curdir, qw<t bin git>);
   if ($^O eq 'MSWin32') {
    unless (-x $git) {
     $git .= '.bat';