summaryrefslogtreecommitdiff
path: root/t/author-eol.t
blob: 667191f0efd3ba9905a424ce44e9bf5ffc2b9f32 (plain)
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
BEGIN {
  unless ($ENV{AUTHOR_TESTING}) {
    print qq{1..0 # SKIP these tests are for testing by the author\n};
    exit
  }
}

use strict;
use warnings;

# this test was generated with Dist::Zilla::Plugin::Test::EOL 0.19

use Test::More 0.88;
use Test::EOL;

my @files = (
    'lib/Dist/Zilla/Plugin/OurPkgVersion.pm',
    't/00-compile.t',
    't/00-report-prereqs.dd',
    't/00-report-prereqs.t',
    't/01-basic.t',
    't/02-vstring.t',
    't/03-trial.t',
    't/04-underscore.t',
    't/05-skip_main_module.t',
    't/06-overwrite.t',
    't/07-semantic.t',
    't/08-build_exceptions.t',
    't/09-version_provider.t'
);

eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;