blob: 63aec973beb30a35d9717934d8445558a00f698e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 1;
BEGIN {
use_ok("Business::OnlineThirdPartyPayment")
or BAIL_OUT("unable to load Business::OnlineThirdPartyPayment\n");
}
|