diff options
author | ivan <ivan> | 2008-02-14 03:48:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-02-14 03:48:31 +0000 |
commit | 9cf275815391b80b4e7a317fee9cb665aa77e16f (patch) | |
tree | 12ed439c3ccaa2c8691e494d0db57eae38597857 /FS/t | |
parent | 9ca1b9f65edb0e54dc846f2b6769812b482391cb (diff) |
add FS::h_cust_pay class
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/h_cust_credit.t | 5 | ||||
-rw-r--r-- | FS/t/h_cust_pay.t | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/FS/t/h_cust_credit.t b/FS/t/h_cust_credit.t new file mode 100644 index 000000000..e20f4765a --- /dev/null +++ b/FS/t/h_cust_credit.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_cust_credit; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_cust_pay.t b/FS/t/h_cust_pay.t new file mode 100644 index 000000000..6a3fe95ab --- /dev/null +++ b/FS/t/h_cust_pay.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_cust_pay; +$loaded=1; +print "ok 1\n"; |