diff options
author | Guillaume Rousse <guillomovitch@mageia.org> | 2012-12-05 12:09:36 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mageia.org> | 2012-12-05 12:09:36 +0000 |
commit | 2f38ca7d0d4a2119c1a23a4cb244d128947ac870 (patch) | |
tree | d7abae0d84899b551fee6edc61f6a35a8e60c8dc /t/03pod.t | |
parent | 5c6d47aa725019b5a9bba46e84bae7f72e98b3b9 (diff) | |
download | urpmi-2f38ca7d0d4a2119c1a23a4cb244d128947ac870.tar urpmi-2f38ca7d0d4a2119c1a23a4cb244d128947ac870.tar.gz urpmi-2f38ca7d0d4a2119c1a23a4cb244d128947ac870.tar.bz2 urpmi-2f38ca7d0d4a2119c1a23a4cb244d128947ac870.tar.xz urpmi-2f38ca7d0d4a2119c1a23a4cb244d128947ac870.zip |
initial import
Diffstat (limited to 't/03pod.t')
-rwxr-xr-x | t/03pod.t | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/t/03pod.t b/t/03pod.t new file mode 100755 index 00000000..85a7158e --- /dev/null +++ b/t/03pod.t @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use English qw(-no_match_vars); +use Test::More; + +plan(skip_all => 'Author test, set $ENV{TEST_AUTHOR} to a true value to run') + if !$ENV{TEST_AUTHOR}; + +eval { + require Test::Pod; + Test::Pod->import(); +}; +plan(skip_all => 'Test::Pod required') if $EVAL_ERROR; + +all_pod_files_ok('urpm'); |