- minor cleanup
[Business-OnlinePayment.git] / t / bop_https.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use Test::More;
6
7 my $package = "Business::OnlinePayment::HTTPS";
8 eval "use $package;";
9
10 # HTTPS support is optional
11 plan( $@ ? ( skip_all => "$package: $@\n" ) : ( tests => 1 ) );
12
13 can_ok( $package, qw(https_get https_post) );