diff options
author | ivan <ivan> | 2002-08-26 18:15:04 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-26 18:15:04 +0000 |
commit | 66bb30f463ce9846ffa5d98ff0df20851aa4815a (patch) | |
tree | d0b506ab18fb80a197d1a929a236c256f568562e /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..c90bb23 --- /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::VirtualNet; +$loaded = 1; +print "ok 1\n"; |