diff options
author | Greg Sabino Mullane | 2010-01-09 19:20:03 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2010-01-09 19:20:03 +0000 |
commit | 190bffa48752997fb0f7f59dc4d7a80f1238ce1f (patch) | |
tree | 65601c1d6288bace2e6d5e2a268854faceaef5e5 | |
parent | fc592658f36b4d3f5ffcec0609ae5d968ae71780 (diff) |
Fix test planning error.
-rw-r--r-- | t/99_pod.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/99_pod.t b/t/99_pod.t index 3cd7bdef5..985360b62 100644 --- a/t/99_pod.t +++ b/t/99_pod.t @@ -5,11 +5,14 @@ use 5.006; use strict; use warnings; -use Test::More tests => 2; +use Test::More; if (!$ENV{RELEASE_TESTING}) { plan (skip_all => 'Test skipped unless environment variable RELEASE_TESTING is set'); } +else { + plan tests => 2; +} my $PODVERSION = '0.95'; eval { |