diff options
author | ivan <ivan> | 2003-01-14 05:52:12 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-01-14 05:52:12 +0000 |
commit | 2bdce7b0c9d7468d676ee4bfa824b1fb0cbba207 (patch) | |
tree | 0276ab22282e798870f2e7b7adc0a40fdce5bdfd /t/load.t |
initial importSTART
Diffstat (limited to 't/load.t')
-rw-r--r-- | t/load.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/load.t b/t/load.t new file mode 100644 index 0000000..d2a7f26 --- /dev/null +++ b/t/load.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use Business::OnlinePayment::PayflowPro; +$loaded = 1; +print "ok 1\n"; |