From 45212c1d88b4f594e69149116c576ca1dddf3884 Mon Sep 17 00:00:00 2001 From: hatorikibble Date: Fri, 3 Apr 2015 17:03:56 +0200 Subject: [PATCH] fixed typo in pod of unifmt, added Test::Pod in xt --- script/unifmt | 2 ++ xt/pod.t | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 xt/pod.t diff --git a/script/unifmt b/script/unifmt index cd268c3..f5867ce 100755 --- a/script/unifmt +++ b/script/unifmt @@ -259,6 +259,8 @@ L L, L, L, L, and L. +=back + =head1 AUTHOR Tom Christiansen diff --git a/xt/pod.t b/xt/pod.t new file mode 100644 index 0000000..d3cf2d6 --- /dev/null +++ b/xt/pod.t @@ -0,0 +1,11 @@ +use Test::More; + +eval 'use Test::Pod'; +plan skip_all => 'Test::Pod required for this test' if $@; + +eval 'use File::Spec'; +plan skip_all => 'File::Spec required for this test' if $@; + +all_pod_files_ok( all_pod_files( File::Spec->updir ) ); + +done_testing;