[libdist-zilla-plugin-test-eol-perl] 01/04: Split off of Plugin::SanityTests

Intrigeri intrigeri at moszumanska.debian.org
Sun Aug 16 09:19:40 UTC 2015


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to annotated tag 0.01
in repository libdist-zilla-plugin-test-eol-perl.

commit aa0a92dd85b85ec81e16b2dc8915a75f9d591e16
Author: Florian Ragwitz <rafl at debian.org>
Date:   Sat May 29 16:43:11 2010 +0200

    Split off of Plugin::SanityTests
---
 lib/Dist/Zilla/Plugin/EOLTests.pm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/lib/Dist/Zilla/Plugin/EOLTests.pm b/lib/Dist/Zilla/Plugin/EOLTests.pm
new file mode 100644
index 0000000..2043c25
--- /dev/null
+++ b/lib/Dist/Zilla/Plugin/EOLTests.pm
@@ -0,0 +1,33 @@
+package Dist::Zilla::Plugin::EOLTests;
+# ABSTRACT: Release tests making sure correct line endings are used
+
+use Moose;
+use namespace::autoclean;
+
+extends 'Dist::Zilla::Plugin::InlineFiles';
+
+=head1 DESCRIPTION
+
+This is an extension of L<Dist::Zilla::Plugin::InlineFiles>, providing
+the following files:
+
+=for :list
+* xt/release/eol.t
+a standard Test::EOL test
+
+=cut
+
+__PACKAGE__->meta->make_immutable;
+
+1;
+
+__DATA__
+___[ xt/release/eol.t ]___
+use strict;
+use warnings;
+use Test::More;
+
+eval 'use Test::EOL';
+plan skip_all => 'Test::EOL required' if $@;
+
+all_perl_files_ok();

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-plugin-test-eol-perl.git



More information about the Pkg-perl-cvs-commits mailing list