From: ivan Date: Wed, 14 Aug 2002 01:32:54 +0000 (+0000) Subject: - PREREQ_PM on Business::OnlinePayment X-Git-Tag: BUSINESS_ONLINEPAYMENT_LINKPOINT_0_02~1 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-LinkPoint.git;a=commitdiff_plain;h=57be53d4eb43d9dba5ce1882f32e79a8167b472c - PREREQ_PM on Business::OnlinePayment - move load.t from t/ to t2/ - documentation updates --- diff --git a/Changes b/Changes index 7d5b105..559ccdf 100644 --- a/Changes +++ b/Changes @@ -6,6 +6,7 @@ Revision history for Perl extension Business::OnlinePayment::LinkPoint. 5.005-friendly way) - better URLs for linkpoint perl wrapper - don't spew debugging output by default + - move load.t test from t1/ to t2/ 0.01 Wed Nov 21 04:00:26 2001 - original version; created by ivan 1.0 diff --git a/LinkPoint.pm b/LinkPoint.pm index 17cab8e..26c16bb 100644 --- a/LinkPoint.pm +++ b/LinkPoint.pm @@ -1,6 +1,6 @@ package Business::OnlinePayment::LinkPoint; -# $Id: LinkPoint.pm,v 1.5 2002-02-27 23:28:28 ivan Exp $ +# $Id: LinkPoint.pm,v 1.6 2002-08-14 01:32:54 ivan Exp $ use strict; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); @@ -234,7 +234,7 @@ Based on Busienss::OnlinePayment::AuthorizeNet written by Jason Kohles. =head1 SEE ALSO -perl(1). L. +perl(1), L. =cut diff --git a/Makefile.PL b/Makefile.PL index bb32ada..95f9c98 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,5 +5,6 @@ WriteMakefile( 'NAME' => 'Business::OnlinePayment::LinkPoint', 'VERSION_FROM' => 'LinkPoint.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler ', + 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, }, #'NORECURS' => 1, # dont descend into subdirectories ); diff --git a/README b/README index eb6e6c3..e6e0719 100644 --- a/README +++ b/README @@ -3,12 +3,11 @@ All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This is Business::OnlinePayment::LinkPoint, an Business::OnlinePayment -backend module for the LinkPoint. It is only useful if you have a merchant -account with LinkPoint: http://www.linkpoint.com/ and the "LinkPoint Perl -Wrapper": +backend module for LinkPoint. It is only useful if you have a merchant account +with LinkPoint: http://www.linkpoint.com/ and the "LinkPoint Perl Wrapper": http://www.linkpoint.com/product_solutions/internet/lperl/lperl_main.html -It is based on Businss::OnlinePayment::AuthorizeNet written by Jason Kohles. +It is based on Business::OnlinePayment::AuthorizeNet written by Jason Kohles. There are additional tests in t2/ that may be useful to you once you have a store number and key file. diff --git a/t/load.t b/t/load.t deleted file mode 100644 index ac1adbd..0000000 --- a/t/load.t +++ /dev/null @@ -1,5 +0,0 @@ -BEGIN { $| = 1; print "1..1\n"; } -END {print "not ok 1\n" unless $loaded;} -use Business::OnlinePayment::LinkPoint; -$loaded = 1; -print "ok 1\n"; diff --git a/t2/load.t b/t2/load.t new file mode 100644 index 0000000..ac1adbd --- /dev/null +++ b/t2/load.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use Business::OnlinePayment::LinkPoint; +$loaded = 1; +print "ok 1\n";