diff options
author | ivan <ivan> | 2006-10-18 23:11:55 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-10-18 23:11:55 +0000 |
commit | 39541291959ba143c5a9e8272b45d49aea654f35 (patch) | |
tree | bf457467de08ab63b2188ade1f851d31e947686c /Makefile.PL | |
parent | 613a646d7362d686c7b1f241b1bb47db50968de7 (diff) |
update test to use Test::More and add hardcoded test account from auth.net, RT#22076
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.PL b/Makefile.PL index 6563db8..1f9c265 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,12 @@ use ExtUtils::MakeMaker; -# See lib/ExtUtils/MakeMaker.pm for details of how to influence -# the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Business::OnlinePayment::AuthorizeNet', 'VERSION_FROM' => 'AuthorizeNet.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler <ivan-authorizenet@420.am>', #really just #the maintainer - #'NORECURS' => 1, # dont descend into subdirectories 'PREREQ_PM' => { 'Net::SSLeay' => 0, 'Text::CSV_XS' => 0, 'Business::OnlinePayment' => 0, + 'Test::More' => 0.42, }, - #'dist' => {CI => 'ci -l'}, ); |