Add private tests and load test. Don't distribute private tests.

This commit is contained in:
Eric Miller
2008-07-07 03:59:47 +00:00
parent a901d9a61c
commit 6221228d1f
4 changed files with 271 additions and 0 deletions

14
t/00_local_distribution.t Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/perl
# 00_local_distribution.t - Private test to check distribution
# $Id$
use strict;
use warnings;
use Test::More;
eval { require Test::Distribution; };
plan skip_all => 'Optional Test::Distribution not installed' if ($@);
# Skip POD tests as we will test separately
import Test::Distribution not => [ qw/pod podcover/ ];