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
		
			
				
	
	
		
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/usr/bin/env perl
 | |
| # 00-load.t - Test loading of SNMP::Info
 | |
| # $Id$
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| use Test::More tests => 1;
 | |
| 
 | |
| BEGIN {
 | |
| 	use_ok( 'SNMP::Info' );
 | |
| }
 | |
| 
 | |
| diag( "Testing SNMP::Info $SNMP::Info::VERSION, Perl $], $^X" );
 |