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