summaryrefslogtreecommitdiff
path: root/t/load.t
blob: 1d6d6bc24e2ce9ec2c264d255e9856e4f256238e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
  $| = 1; print "1..1\n";
  eval "use Net::SSLeay;";
  if ( $@ ) {
    print "ok 1 # Skipped: Net::SSLeay is not installed\n"; exit;
  }

}
END {print "not ok 1\n" unless $loaded;}
use Business::OnlinePayment::SecureHostingUPG;
$loaded = 1;
print "ok 1\n";