diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-02-26 13:12:37 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-02-26 13:12:37 -0800 |
commit | 5e78b358502a9506b60b5e1f888feb83a1f8fa86 (patch) | |
tree | fee3f0e6f21eee0455c9655a5e98cb04cabfe0c4 /FS/t | |
parent | 3198bdfc17b6c1370dadc17d608a571c0f811b5c (diff) | |
parent | e8fb3448ac1b9dae5410f88cf70eb36cd822c247 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/cust_bill_pkg_fee.t | 5 | ||||
-rw-r--r-- | FS/t/cust_event_fee.t | 5 | ||||
-rw-r--r-- | FS/t/part_fee.t | 5 | ||||
-rw-r--r-- | FS/t/part_fee_msgcat.t | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/FS/t/cust_bill_pkg_fee.t b/FS/t/cust_bill_pkg_fee.t new file mode 100644 index 000000000..c7cf0a0e5 --- /dev/null +++ b/FS/t/cust_bill_pkg_fee.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pkg_fee; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_event_fee.t b/FS/t/cust_event_fee.t new file mode 100644 index 000000000..882b1df94 --- /dev/null +++ b/FS/t/cust_event_fee.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_event_fee; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_fee.t b/FS/t/part_fee.t new file mode 100644 index 000000000..b4192a4c9 --- /dev/null +++ b/FS/t/part_fee.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_fee; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_fee_msgcat.t b/FS/t/part_fee_msgcat.t new file mode 100644 index 000000000..f7e8ca8e7 --- /dev/null +++ b/FS/t/part_fee_msgcat.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_fee_msgcat; +$loaded=1; +print "ok 1\n"; |