* ident
* remove $Id$ tags from rcs software which has been retired
* make an effort to sync required mib docs with actual code
* sync even more docs with what code actually does
* some whitespace nits
* fixup example to use snmpv2 for all but the most ancient devices
* remove blurb to find more specific snmp::info classes for classes
  which alrdy are as specific as they can get (eg snmp::info::layer3::vmware
  doesn't need info on to find a specific module since there ain't none)
* rename all sub {vendor} strings to lowercase vendor, if cisco, juniper
  and arista can be lowercase, so can be all the rest.
* fix tests
* spread some use warnings around
* use $ instead of @
* remove defines that are included via parent classes
* use strict + warnings
* remove alrdy included modules
* add comma after last list item
* typos
* mibs are found in our mib repo, not on the cisco site
* documentation fixes
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			632 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			632 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/usr/bin/env perl
 | |
| # pod-coverage.t - Test to check POD coverage of SNMP::Info
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| use Test::More;
 | |
| 
 | |
| # Ensure a recent version of Test::Pod::Coverage
 | |
| my $min_tpc = 1.08;
 | |
| eval "use Test::Pod::Coverage $min_tpc";
 | |
| plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
 | |
|     if $@;
 | |
| 
 | |
| # Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
 | |
| # but older versions don't recognize some common documentation styles
 | |
| my $min_pc = 0.18;
 | |
| eval "use Pod::Coverage $min_pc";
 | |
| plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
 | |
|     if $@;
 | |
| 
 | |
| all_pod_coverage_ok();
 |