The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dist::Zilla::Plugin::Test::Kwalitee::Extra - Dist::Zilla plugin for Test::Kwalitee::Extra

VERSION

version v0.2.1

SYNOPSIS

In your dist.ini,

  [Test::Kwalitee::Extra]
  arg = !has_example

If you want to avoid network access

  [Test::Kwalitee::Extra]
  arg = !prereq_matches_use

DESCRIPTION

This module is a Dist::Zilla plugin for Test::Kwalitee::Extra. It creates xt/release/kwalitee.t to call Test::Kwalitee::Extra.

Most part of codes and tests are identical to Dist::Zilla::Plugin::Test::Kwalitee. Only the followings are changed points.

OPTIONS

arg

They are passed through to Test::Kwalitee::Extra.

METHODS

The following methods are overridden.

mvp_multivalue_args

Declare arg.

gather_files

Create xt/release/kwalitee.t.

NAME

Dist::Zilla::Plugin::Test::Kwalitee::Extra - Dist::Zilla plugin for Test::Kwalitee::Extra

CAVEATS

An optional indicator prereq_matches_use and an experimental indicator build_prereq_matches_use require HTTP access to MetaCPAN site. If you want to avoid it, you can specify excluded indicators like

  # Avoid network access
  [Test::Kwalitee::Extra]
  arg = !prereq_matches_use

  # or, when experimental enabled
  [Test::Kwalitee::Extra]
  arg = :experimental !prereq_matches_use !build_prereq_matches_use

Or mitigate wait by tentative failures to reduce retry counts like

  # Try just one time for each query
  [Test::Kwalitee::Extra]
  arg = :retry 1

AUTHORS

LICENSE

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

AUTHOR

Yasutaka ATARASHI <yakex@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Yasutaka ATARASHI.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.