From 3caadd413c177681f3fa9c6a1895a0044f4d00f9 Mon Sep 17 00:00:00 2001 From: Stephen Nelson Date: Fri, 6 Sep 2013 20:32:38 -0700 Subject: [PATCH] Fixed error in pod of debinhex and added pod test --- Changes | 3 +++ bin/debinhex.pl | 3 ++- xt/pod.t | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 xt/pod.t diff --git a/Changes b/Changes index 4432dc8..100060f 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/bin/debinhex.pl b/bin/debinhex.pl index 1083880..e80fde1 100755 --- a/bin/debinhex.pl +++ b/bin/debinhex.pl @@ -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ören M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32. +Sšren M. Andersen (somian), made it actually work under Perl 5.8.7 on MSWin32. =cut diff --git a/xt/pod.t b/xt/pod.t new file mode 100644 index 0000000..ff9308d --- /dev/null +++ b/xt/pod.t @@ -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');