]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - t/21-once.t
Switch qw delimiters to <>
[perl/modules/rgit.git] / t / 21-once.t
index 46c6975f38a3eb4a926b235dc12f20b1fd1e0bac..51224ab8b5d38aa2442a1bcaba75434520b7acfb 100644 (file)
@@ -3,15 +3,15 @@
 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 Test::More;
 
 use App::Rgit;
 
 use lib 't/lib';
-use App::Rgit::TestUtils qw/can_run_git/;
+use App::Rgit::TestUtils qw<can_run_git>;
 
 my ($can_run, $reason) = can_run_git;
 if ($can_run) {
@@ -21,20 +21,20 @@ if ($can_run) {
 }
 
 my @expected = (
- ([ [ qw/%n %g %w %b %%/ ] ]) x 5
+ ([ [ qw<%n %g %w %b %%> ] ]) x 5
 );
 
 local $ENV{GIT_DIR}       = 't';
 local $ENV{GIT_EXEC_PATH} = 't/bin/git';
 
-for my $cmd (qw/daemon gui help init version/) {
+for my $cmd (qw<daemon gui help init version>) {
  my ($fh, $filename) = tempfile(UNLINK => 1);
 
  my $ar = App::Rgit->new(
   git  => $ENV{GIT_EXEC_PATH},
   root => $ENV{GIT_DIR},
   cmd  => $cmd,
-  args => [ abs_path($filename), $cmd, qw/%n %g %w %b %%/ ],
+  args => [ abs_path($filename), $cmd, qw<%n %g %w %b %%> ],
  );
  isa_ok $ar, 'App::Rgit', "once $cmd is an App::Rgit object";
 
@@ -45,7 +45,7 @@ for my $cmd (qw/daemon gui help init version/) {
  is @lines, 1, "once $cmd visited only one repo";
 
  my $r = [ split /\|/, defined $lines[0] ? $lines[0] : '' ];
- my $e = [ $cmd, qw/%n %g %w %b %%/ ];
+ my $e = [ $cmd, qw<%n %g %w %b %%> ];
  s/[\r\n]*$// for @$r;
  for (0 .. 5) {
   is $r->[$_], $e->[$_], "once $cmd argument $_ is ok";