File: bop_https.t

package info (click to toggle)
libbusiness-onlinepayment-perl 3.05-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 172 kB
  • sloc: perl: 748; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;

my $package = "Business::OnlinePayment::HTTPS";
eval "use $package;";

# HTTPS support is optional
plan( $@ ? ( skip_all => "$package: $@\n" ) : ( tests => 1 ) );

can_ok( $package, qw(https_get https_post) );