add hook::lexwrap to testdeps (#341) also use #!/usr/bin/env perl instead of #!/usr/bin/perl can't see a related change to perl5.30 that could cause this however
		
			
				
	
	
		
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/usr/bin/env 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/ ];
 |