Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed typo in pod of unifmt, added Test::Pod in xt #7

Merged
merged 1 commit into from Apr 5, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions script/unifmt
Expand Up @@ -259,6 +259,8 @@ L<fmt(1)>
L<Text::Autoformat>, L<Text::LineFold>, L<Text::Wrap>,
L<Unicode::LineBreak>, and L<Unicode::GCString>.

=back

=head1 AUTHOR

Tom Christiansen <tchrist@perl.com>
Expand Down
11 changes: 11 additions & 0 deletions 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;