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 /t/load.t | |
parent | 613a646d7362d686c7b1f241b1bb47db50968de7 (diff) |
update test to use Test::More and add hardcoded test account from auth.net, RT#22076
Diffstat (limited to 't/load.t')
-rw-r--r-- | t/load.t | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ -BEGIN { $| = 1; print "1..1\n"; } -END {print "not ok 1\n" unless $loaded;} -use Business::OnlinePayment::AuthorizeNet; -$loaded = 1; -print "ok 1\n"; +#!/usr/bin/perl -w + +use Test::More tests => 1; + +use_ok 'Business::OnlinePayment::AuthorizeNet'; |