File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -822,7 +822,7 @@ BEGIN {
822822 local $Test::Builder::Level = $Test::Builder::Level + 1;
823823 Test::More::fail(<<'HERE' );
824824Your system doesn't seem to have IO::Pty, and the developers
825- forgot to check in this test file. Please file a bug report
825+ forgot to check for it in this test file. Please file an issue
826826at https://github.com/beyondgrep/ack3/issues with the name of
827827the file that generated this failure.
828828HERE
Original file line number Diff line number Diff line change @@ -9,12 +9,17 @@ use Term::ANSIColor qw(color);
99use lib ' t' ;
1010use Util;
1111
12+ if ( not has_io_pty() ) {
13+ plan skip_all => q{ You need to install IO::Pty to run this test} ;
14+ exit (0);
15+ }
16+
1217prep_environment();
1318
14- my $CFN = color ' bold green' ;
15- my $CRESET = color ' reset' ;
16- my $CLN = color ' bold yellow' ;
17- my $CM = color ' black on_yellow' ;
19+ my $CFN = color( ' bold green' ) ;
20+ my $CRESET = color( ' reset' ) ;
21+ my $CLN = color( ' bold yellow' ) ;
22+ my $CM = color( ' black on_yellow' ) ;
1823my $LINE_END = " \e [0m\e [K" ;
1924
2025DOLLAR_1: {
You can’t perform that action at this time.
0 commit comments