Only recognise Pod for .pod files (#3863)

We uncomplicate matters by removing ".pod" from the Perl definition
entirely.
This commit is contained in:
Ashe Connor
2017-10-17 19:05:20 +11:00
committed by GitHub
parent ea3e79a631
commit 93cd47822f
5 changed files with 1 additions and 18 deletions

10
samples/Pod/Sample.pod Normal file
View File

@@ -0,0 +1,10 @@
use strict;
use warnings;
package DZT::Sample;
sub return_arrayref_of_values_passed {
my $invocant = shift;
return \@_;
}
1;