the sitelib change happened before this module was cored, so we don't need to do...
[p5sagit/Module-Metadata.git] / t / endpod.t
CommitLineData
30890a12 1use strict;
2use warnings;
3use utf8;
8d86d0e2 4use Test::More tests => 2;
30890a12 5use Module::Metadata;
6
7# This test case tests about parsing pod after `__END__` token.
8
9my $pm_info = Module::Metadata->new_from_file('t/lib/ENDPOD.pm', collect_pod => 1,);
10is( $pm_info->name, 'ENDPOD', 'found default package' );
11is(join(',', $pm_info->pod_inside), 'NAME');