1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#!perl -T
use strict;
use warnings;
use Test::More tests => 12;
use lib 't';
use Util;
prep_environment();
NO_SWITCHES_ONE_FILE: {
my @expected = line_split( <<'HERE' );
use strict;
HERE
my @files = qw( t/swamp/options.pl );
my @args = qw( strict );
my @results = run_ack( @args, @files );
lists_match( \@results, \@expected, 'Looking for strict in one file' );
}
NO_SWITCHES_MULTIPLE_FILES: {
my $target_file = reslash( 't/swamp/options.pl' );
my @expected = line_split( <<"HERE" );
$target_file:2:use strict;
HERE
my @files = qw( t/swamp/options.pl t/swamp/pipe-stress-freaks.F );
my @args = qw( strict );
my @results = run_ack( @args, @files );
lists_match( \@results, \@expected, 'Looking for strict in multiple files' );
}
WITH_SWITCHES_ONE_FILE: {
my $target_file = reslash( 't/swamp/options.pl' );
for my $opt ( qw( -H --with-filename ) ) {
my @expected = line_split( <<"HERE" );
$target_file:2:use strict;
HERE
my @files = qw( t/swamp/options.pl );
my @args = ( $opt, qw( strict ) );
my @results = run_ack( @args, @files );
lists_match( \@results, \@expected, "Looking for strict in one file with $opt" );
}
}
WITH_SWITCHES_MULTIPLE_FILES: {
for my $opt ( qw( -h --no-filename ) ) {
my @expected = line_split( <<"HERE" );
use strict;
HERE
my @files = qw( t/swamp/options.pl t/swamp/crystallography-weenies.f );
my @args = ( $opt, qw( strict ) );
my @results = run_ack( @args, @files );
lists_match( \@results, \@expected, "Looking for strict in multiple files with $opt" );
}
}
|