# $Id: 00-load.t,v 1.2 2004/11/26 15:27:32 olaf Exp $  -*-perl-*-


use Test::More tests => 5;
use strict;

BEGIN { 
    use_ok('Net::DNS::SEC::NSECepsilon'); 

}




# Did we get things imported correctly?
#
{ 	
	no strict 'refs';
	foreach my $sym (@Net::DNS::SEC::NSECepsilon::EXPORT) {
		ok(defined &{$sym}, "$sym is imported");
	}
}
			

