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

DESCRIPTION

The code of this Dist::Zilla file gatherer module is taken from https://github.com/moose/moose/blob/master/inc/ExtractInlineTests.pm.

This module scans all files for inline tests in POD sections, like e.g.:

        =begin testing

        use Test::Exception;

        my $list;

        lives_ok {
                $list = My::AddressRange->list_from_range('10.2.3.1', '10.2.3.5')
        } "list_from_range() doesn't die with correct input for a list of IPs";

        dies_ok {
                My::AddressRange->list_from_range('10.2.3.A', '10.2.3.5')
        } "list_from_range() complains about invalid address";

        =end testing
        

1 POD Error

The following errors were encountered while parsing the POD:

Around line 5:

Unknown directive: =utf8