diff options
Diffstat (limited to 't/06spelling.t')
-rwxr-xr-x | t/06spelling.t | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/t/06spelling.t b/t/06spelling.t deleted file mode 100755 index 90e36e48..00000000 --- a/t/06spelling.t +++ /dev/null @@ -1,24 +0,0 @@ -#!/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; - -eval { - require Test::Pod::Spelling::CommonMistakes; - Test::Pod::Spelling::CommonMistakes->import(); -}; -plan(skip_all => 'Test::Pod::Spelling::CommonMistakes required') if $EVAL_ERROR; - -all_pod_files_ok(all_pod_files('urpm')); |