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