diff options
author | ivan <ivan> | 2005-09-14 11:01:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-09-14 11:01:02 +0000 |
commit | cbcbbfe12075ea9cea726735e3ba77e68e8a0a76 (patch) | |
tree | d15844d45095e641eeb44177381492dc94733760 /FS/t | |
parent | c2f77e3e9f95934545331b62a19579e45c98d403 (diff) |
fix autogenerated simple test
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/agent_payment_gateway.t | 5 | ||||
-rw-r--r-- | FS/t/banned_pay.t | 9 | ||||
-rw-r--r-- | FS/t/cancel_reason.t | 9 | ||||
-rw-r--r-- | FS/t/payment_gateway.t | 9 | ||||
-rw-r--r-- | FS/t/payment_gateway_option.t | 9 |
5 files changed, 17 insertions, 24 deletions
diff --git a/FS/t/agent_payment_gateway.t b/FS/t/agent_payment_gateway.t new file mode 100644 index 000000000..af78a9a27 --- /dev/null +++ b/FS/t/agent_payment_gateway.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::agent_payment_gateway; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/banned_pay.t b/FS/t/banned_pay.t index d361c588d..bef1ff25f 100644 --- a/FS/t/banned_pay.t +++ b/FS/t/banned_pay.t @@ -1,8 +1,5 @@ -BEGIN { $| = 1; print "1..1 -" } -END {print "not ok 1 -" unless $loaded;} +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} use FS::banned_pay; $loaded=1; -print "ok 1 -"; +print "ok 1\n"; diff --git a/FS/t/cancel_reason.t b/FS/t/cancel_reason.t index 4cbda4a65..a5948f657 100644 --- a/FS/t/cancel_reason.t +++ b/FS/t/cancel_reason.t @@ -1,8 +1,5 @@ -BEGIN { $| = 1; print "1..1 -" } -END {print "not ok 1 -" unless $loaded;} +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} use FS::cancel_reason; $loaded=1; -print "ok 1 -"; +print "ok 1\n"; diff --git a/FS/t/payment_gateway.t b/FS/t/payment_gateway.t index b91d58244..4bcc78153 100644 --- a/FS/t/payment_gateway.t +++ b/FS/t/payment_gateway.t @@ -1,8 +1,5 @@ -BEGIN { $| = 1; print "1..1 -" } -END {print "not ok 1 -" unless $loaded;} +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} use FS::payment_gateway; $loaded=1; -print "ok 1 -"; +print "ok 1\n"; diff --git a/FS/t/payment_gateway_option.t b/FS/t/payment_gateway_option.t index e52b6b487..19e645121 100644 --- a/FS/t/payment_gateway_option.t +++ b/FS/t/payment_gateway_option.t @@ -1,8 +1,5 @@ -BEGIN { $| = 1; print "1..1 -" } -END {print "not ok 1 -" unless $loaded;} +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} use FS::payment_gateway_option; $loaded=1; -print "ok 1 -"; +print "ok 1\n"; |