summaryrefslogtreecommitdiff
path: root/t/load.t
blob: cca662e07ba81a01ed074fcee25359f14d853735 (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::OpenECHO;
$loaded = 1;
print "ok 1\n";