summaryrefslogtreecommitdiffstats
path: root/t/pod-spelling.t
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mageia.org>2012-12-10 18:19:07 +0000
committerGuillaume Rousse <guillomovitch@mageia.org>2012-12-10 18:19:07 +0000
commite4350784fcb06b472c903633d0f3a8209457006a (patch)
tree85068e982cbbe224270760807f90959261ef88d9 /t/pod-spelling.t
parent04bd5cebd2e0dfb0b967ad803a9c9545c6038a2c (diff)
downloadurpmi-e4350784fcb06b472c903633d0f3a8209457006a.tar
urpmi-e4350784fcb06b472c903633d0f3a8209457006a.tar.gz
urpmi-e4350784fcb06b472c903633d0f3a8209457006a.tar.bz2
urpmi-e4350784fcb06b472c903633d0f3a8209457006a.tar.xz
urpmi-e4350784fcb06b472c903633d0f3a8209457006a.zip
revert my previous commits, this was a bad anyway
Diffstat (limited to 't/pod-spelling.t')
-rw-r--r--t/pod-spelling.t24
1 files changed, 0 insertions, 24 deletions
diff --git a/t/pod-spelling.t b/t/pod-spelling.t
deleted file mode 100644
index 90e36e48..00000000
--- a/t/pod-spelling.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'));