From: Olivier Mengué Date: Sat, 8 Sep 2012 06:57:20 +0000 (+0200) Subject: Enforce clean source by applying Test::EOL on ourself X-Git-Tag: 1.4~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTest-EOL.git;a=commitdiff_plain;h=ed1f9780d5ff34a1d5b290f5e357f1f042af5880 Enforce clean source by applying Test::EOL on ourself To avoid an other shame (see commit 1ec979a85aff74) and ensure future Win32 portability, apply all Test::EOL strictures on ourself. --- diff --git a/dist.ini b/dist.ini index c11e0c0..f128997 100644 --- a/dist.ini +++ b/dist.ini @@ -10,7 +10,7 @@ copyright_holder = Tomas Doran [@Filter] -bundle = @FLORA --remove = EOLTests ; in our tests we need windows line endings +-remove = EOLTests ; we test ourself in t/10-use-self.t dist = Test-EOL repository_at = catagits diff --git a/t/10-use-self.t b/t/10-use-self.t new file mode 100644 index 0000000..f9f757b --- /dev/null +++ b/t/10-use-self.t @@ -0,0 +1,3 @@ +# Check that our own source is clean +use Test::EOL; +all_perl_files_ok({ trailing_whitespace => 1 });