The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
NAME
    Module::Install::TestML - Module::Install Support for TestML

SYNOPSIS
        use inc::Module::Install;

        name     'Foo';
        all_from 'lib/Foo.pm';

        use_testml_tap;

        WriteAll;

DESCRIPTION
    This module adds the "use_testml_tap" directive to Module::Install.

    Now you can get full TestML support for your module with no external
    dependency on TestML.

    Just add this line to your Makefile.PL:

        use_testml_tap;

    That's it. Really. Now Test::Base is bundled into your module, so that
    it is no longer any burden on the person installing your module.

AUTHOR
    Ingy döt Net <ingy@cpan.org>

COPYRIGHT
    Copyright 2009-2014. Ingy döt Net.

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

    See <http://www.perl.com/perl/misc/Artistic.html>