summaryrefslogtreecommitdiff
path: root/t/90-pod-coverage.t
diff options
context:
space:
mode:
Diffstat (limited to 't/90-pod-coverage.t')
-rw-r--r--t/90-pod-coverage.t17
1 files changed, 0 insertions, 17 deletions
diff --git a/t/90-pod-coverage.t b/t/90-pod-coverage.t
deleted file mode 100644
index f533eea..0000000
--- a/t/90-pod-coverage.t
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use Test::More;
-
-plan skip_all => "Enable DEVEL_TESTS environent variable"
- unless ($ENV{DEVEL_TESTS});
-
-if (eval "use Test::Pod::Coverage tests => 1") {
-}
-else {
- plan skip_all => "Test::Pod::Coverage required" if $@;
-}
-
-pod_coverage_ok("Graphics::ColorNames");
-
-