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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
use strict;
use warnings;
use Test::EOL;
use File::Temp qw( tempdir tempfile );
all_perl_files_ok("lib");
eol_unix_ok( $0, "$0 is unix eol" );
my $file1 = make_file1();
eol_unix_ok( $file1 );
my $file2 = make_file2();
eol_unix_ok( $file2 );
my $file3 = make_file3();
eol_unix_ok( $file3 );
my $file4 = make_file3();
eol_unix_ok( $file3, { trailing_whitespace => 1 });
unlink foreach ( $file1, $file2, $file3, $file4 );
sub make_file1 {
my ($fh, $filename) = tempfile();
print $fh <<'DUMMY';
#!/usr/bin/perl -w
=pod
=head1 NAME
This test script doesn't do anything.
=cut
sub main {
my ($name) = @_;
print "Hello $name!\n";
}
DUMMY
return $filename;
}
sub make_file2 {
my ($fh, $filename) = tempfile();
print $fh <<'DUMMY';
#!/usr/bin/perl -w
=pod
=head1 NAME
This test script doesn't do anything.
=cut
sub main {
my ($name) = @_;
print "Hello $name!\n";
}
DUMMY
return $filename;
}
sub make_file3 {
my ($fh, $filename) = tempfile();
print $fh <<'DUMMY';
package My::Test;
use strict;
use warnings;
sub new {
my ($class) = @_;
my $self = bless {}, $class;
return $self;
}
1;
__END__
DUMMY
return $filename;
}
|