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