Fixed error in pod of debinhex and added pod test

This commit is contained in:
Stephen Nelson
2013-09-06 20:32:38 -07:00
parent 55decd2736
commit 3caadd413c
3 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
Revision history for Perl module Convert::BinHex
{{$NEXT}}
- Fixed pod error in debinhex and added pod tests
1.122 2013-08-25
- Added unit tests for OO and CRC code

View File

@@ -1,5 +1,6 @@
#!/usr/bin/perl -w
=encoding UTF-8
=head1 NAME
@@ -34,7 +35,7 @@ Largely untested.
Paul J. Schinder (NASA/GSFC) mostly, though Eryq can't seem to keep
his grubby paws off anything...
S<EFBFBD>ren M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32.
S<EFBFBD>ren M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32.
=cut

4
xt/pod.t Normal file
View File

@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok('lib', 'bin');