The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More tests => 2;
# This test case tests about parsing pod after `__END__` token.
my $pm_info = Module::Metadata->new_from_file('t/lib/ENDPOD.pm', collect_pod => 1,);
is( $pm_info->name, 'ENDPOD', 'found default package' );
is(join(',', $pm_info->pod_inside), 'NAME');