Skip to content

Commit

Permalink
Moving things that should be in xt to xt
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed May 5, 2009
1 parent 7ae8e2f commit 9d7f5a1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
File renamed without changes.
15 changes: 15 additions & 0 deletions xt/99-pod-coverage.t
@@ -0,0 +1,15 @@
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
plan skip_all => "Coverage tests only run for authors" unless ( -d 'inc/.author' );
plan skip_all => "We know our coverage is bad :(";

all_pod_coverage_ok();

# Workaround for dumb bug (fixed in 5.8.7) where Test::Builder thinks that
# certain "die"s that happen inside evals are not actually inside evals,
# because caller() is broken if you turn on $^P like Module::Refresh does
#
# (I mean, if we've gotten to this line, then clearly the test didn't die, no?)
Test::Builder->new->{Test_Died} = 0;

5 changes: 5 additions & 0 deletions xt/99-pod.t
@@ -0,0 +1,5 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

0 comments on commit 9d7f5a1

Please sign in to comment.