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

13
t/00-load.t Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/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" );