From cbbd0225b07269209c674733bcf70f1c1308e84a Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 25 Jan 2006 12:34:29 +0000 Subject: change texas-style tax exemptions to be against a specific line item rather than just general per-customer, for later tracking and tax reporting. fix 1969/1970 exemptions for one-off charges --- FS/t/cust_tax_exempt_pkg.t | 5 +++++ FS/t/h_cust_bill.t | 5 +++++ FS/t/h_cust_tax_exempt.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/cust_tax_exempt_pkg.t create mode 100644 FS/t/h_cust_bill.t create mode 100644 FS/t/h_cust_tax_exempt.t (limited to 'FS/t') diff --git a/FS/t/cust_tax_exempt_pkg.t b/FS/t/cust_tax_exempt_pkg.t new file mode 100644 index 000000000..099a0ce8a --- /dev/null +++ b/FS/t/cust_tax_exempt_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_tax_exempt_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_cust_bill.t b/FS/t/h_cust_bill.t new file mode 100644 index 000000000..ceccb2a3d --- /dev/null +++ b/FS/t/h_cust_bill.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_cust_bill; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_cust_tax_exempt.t b/FS/t/h_cust_tax_exempt.t new file mode 100644 index 000000000..432238aa5 --- /dev/null +++ b/FS/t/h_cust_tax_exempt.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_cust_tax_exempt; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From b782294eb91805f708a7776fe67f1c0863f4096b Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 26 Jan 2006 15:27:10 +0000 Subject: whew, FINALLY can fix monthly exemption columns to work correctly. also make them agent-specific. also fix package exemption columns, they were bunk too, sheesh. start adding package classes for package class tax reporting. --- FS/t/pkg_class.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/pkg_class.t (limited to 'FS/t') diff --git a/FS/t/pkg_class.t b/FS/t/pkg_class.t new file mode 100644 index 000000000..fb3774f8c --- /dev/null +++ b/FS/t/pkg_class.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::pkg_class; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From a5a4afbb77bbdffc25ae94d10b645b0bcc76e859 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 31 Jan 2006 11:02:54 +0000 Subject: *** empty log message *** --- FS/t/payby.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/payby.t (limited to 'FS/t') diff --git a/FS/t/payby.t b/FS/t/payby.t new file mode 100644 index 000000000..7430bc8e5 --- /dev/null +++ b/FS/t/payby.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::payby; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From a9c8414692c1777da3ff78b83a1e6bbb0729f6eb Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 1 Feb 2006 23:13:48 +0000 Subject: finish adding freeside-monthly and monthly events --- FS/t/Cron-backup.t | 5 +++++ FS/t/Cron-bill.t | 5 +++++ FS/t/Cron-vacuum.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/Cron-backup.t create mode 100644 FS/t/Cron-bill.t create mode 100644 FS/t/Cron-vacuum.t (limited to 'FS/t') diff --git a/FS/t/Cron-backup.t b/FS/t/Cron-backup.t new file mode 100644 index 000000000..847d41aed --- /dev/null +++ b/FS/t/Cron-backup.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Cron::backup; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Cron-bill.t b/FS/t/Cron-bill.t new file mode 100644 index 000000000..42c7b4f9e --- /dev/null +++ b/FS/t/Cron-bill.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Cron::bill; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Cron-vacuum.t b/FS/t/Cron-vacuum.t new file mode 100644 index 000000000..eaa6b762a --- /dev/null +++ b/FS/t/Cron-vacuum.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Cron::vacuum; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From fadaa67e77ad8d5d966e252aba7f193e9e3840e3 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 18 Feb 2006 11:14:21 +0000 Subject: CDR schema and class --- FS/t/cdr.t | 5 +++++ FS/t/cdr_calltype.t | 5 +++++ FS/t/cdr_carrier.t | 5 +++++ FS/t/cdr_type.t | 5 +++++ FS/t/part_pkg-voip_cdr.t | 5 +++++ 5 files changed, 25 insertions(+) create mode 100644 FS/t/cdr.t create mode 100644 FS/t/cdr_calltype.t create mode 100644 FS/t/cdr_carrier.t create mode 100644 FS/t/cdr_type.t create mode 100644 FS/t/part_pkg-voip_cdr.t (limited to 'FS/t') diff --git a/FS/t/cdr.t b/FS/t/cdr.t new file mode 100644 index 000000000..1d1f3eb4e --- /dev/null +++ b/FS/t/cdr.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cdr; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cdr_calltype.t b/FS/t/cdr_calltype.t new file mode 100644 index 000000000..d4e13943e --- /dev/null +++ b/FS/t/cdr_calltype.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cdr_calltype; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cdr_carrier.t b/FS/t/cdr_carrier.t new file mode 100644 index 000000000..1e2161558 --- /dev/null +++ b/FS/t/cdr_carrier.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cdr_carrier; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cdr_type.t b/FS/t/cdr_type.t new file mode 100644 index 000000000..9dff15a32 --- /dev/null +++ b/FS/t/cdr_type.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cdr_type; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-voip_cdr.t b/FS/t/part_pkg-voip_cdr.t new file mode 100644 index 000000000..2d988a34f --- /dev/null +++ b/FS/t/part_pkg-voip_cdr.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::voip_cdr; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 600a0939e7e7e589dae4f4f5bfef3650728940b7 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 8 Mar 2006 10:05:01 +0000 Subject: Add a new table for inventory with for DIDs/serials/etc., and an additional new table for inventory category (i.e. to distinguish DIDs, serials, MACs, etc.) --- FS/t/inventory_class.t | 5 +++++ FS/t/inventory_item.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/inventory_class.t create mode 100644 FS/t/inventory_item.t (limited to 'FS/t') diff --git a/FS/t/inventory_class.t b/FS/t/inventory_class.t new file mode 100644 index 000000000..80b2fa210 --- /dev/null +++ b/FS/t/inventory_class.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::inventory_class; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/inventory_item.t b/FS/t/inventory_item.t new file mode 100644 index 000000000..8ce9d677c --- /dev/null +++ b/FS/t/inventory_item.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::inventory_item; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From ff24bc786a5fd479f2252260e0da580a736f97be Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 20 Mar 2006 19:13:27 +0000 Subject: add price plan to bill on internal or external CDRs directly, add option to export CDRs to a per-customer downstream file --- FS/t/cdr_upstream_rate.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cdr_upstream_rate.t (limited to 'FS/t') diff --git a/FS/t/cdr_upstream_rate.t b/FS/t/cdr_upstream_rate.t new file mode 100644 index 000000000..f9458c527 --- /dev/null +++ b/FS/t/cdr_upstream_rate.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cdr_upstream_rate; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 2c757d7db4cb6a7b9655de13206fcc84fb7ce61f Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 14 May 2006 16:47:31 +0000 Subject: first part of ACL and re-skinning work and some other small stuff --- FS/t/AccessRight.t | 5 +++++ FS/t/access_group.t | 5 +++++ FS/t/access_groupagent.t | 5 +++++ FS/t/access_right.t | 5 +++++ FS/t/access_user.t | 5 +++++ FS/t/access_user_pref.t | 5 +++++ FS/t/access_usergroup.t | 5 +++++ 7 files changed, 35 insertions(+) create mode 100644 FS/t/AccessRight.t create mode 100644 FS/t/access_group.t create mode 100644 FS/t/access_groupagent.t create mode 100644 FS/t/access_right.t create mode 100644 FS/t/access_user.t create mode 100644 FS/t/access_user_pref.t create mode 100644 FS/t/access_usergroup.t (limited to 'FS/t') diff --git a/FS/t/AccessRight.t b/FS/t/AccessRight.t new file mode 100644 index 000000000..a96684224 --- /dev/null +++ b/FS/t/AccessRight.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::AccessRight; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_group.t b/FS/t/access_group.t new file mode 100644 index 000000000..be141099b --- /dev/null +++ b/FS/t/access_group.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_group; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_groupagent.t b/FS/t/access_groupagent.t new file mode 100644 index 000000000..aff1f2524 --- /dev/null +++ b/FS/t/access_groupagent.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_groupagent; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_right.t b/FS/t/access_right.t new file mode 100644 index 000000000..66cd362e8 --- /dev/null +++ b/FS/t/access_right.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_right; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_user.t b/FS/t/access_user.t new file mode 100644 index 000000000..cab679d8d --- /dev/null +++ b/FS/t/access_user.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_user; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_user_pref.t b/FS/t/access_user_pref.t new file mode 100644 index 000000000..282209830 --- /dev/null +++ b/FS/t/access_user_pref.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_user_pref; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/access_usergroup.t b/FS/t/access_usergroup.t new file mode 100644 index 000000000..383a7cf9c --- /dev/null +++ b/FS/t/access_usergroup.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::access_usergroup; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 50f25b285b2caf77d267ed66f03e56924ad7229f Mon Sep 17 00:00:00 2001 From: jeff Date: Sat, 20 May 2006 20:06:30 +0000 Subject: first stab at BoM download --- FS/t/pay_batch.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/pay_batch.t (limited to 'FS/t') diff --git a/FS/t/pay_batch.t b/FS/t/pay_batch.t new file mode 100644 index 000000000..c43133dc2 --- /dev/null +++ b/FS/t/pay_batch.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::pay_batch; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From b2ff1141cfaacfce2fd9c6e5b78fdae2bae95406 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 19 Jun 2006 12:09:14 +0000 Subject: forgot to commit this test --- FS/t/ConfDefaults.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/ConfDefaults.t (limited to 'FS/t') diff --git a/FS/t/ConfDefaults.t b/FS/t/ConfDefaults.t new file mode 100644 index 000000000..433555adb --- /dev/null +++ b/FS/t/ConfDefaults.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::ConfDefaults; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From f06035669a617339ae5e424db5b8f8dda92a425c Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 27 Jul 2006 08:08:46 +0000 Subject: svc_phone.t --- FS/t/svc_phone.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/svc_phone.t (limited to 'FS/t') diff --git a/FS/t/svc_phone.t b/FS/t/svc_phone.t new file mode 100644 index 000000000..15b9ca275 --- /dev/null +++ b/FS/t/svc_phone.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_phone; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 4845aaefedfcbaa25716694b6d80f3dd6d56530a Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 21 Aug 2006 23:01:43 +0000 Subject: add cust_bill_pay_pkg and cust_credit_bill_pkg - applying credits and payments against specific line items --- FS/t/cust_bill_ApplicationCommon.t | 5 +++++ FS/t/cust_bill_pay_pkg.t | 5 +++++ FS/t/cust_credit_bill_pkg.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/cust_bill_ApplicationCommon.t create mode 100644 FS/t/cust_bill_pay_pkg.t create mode 100644 FS/t/cust_credit_bill_pkg.t (limited to 'FS/t') diff --git a/FS/t/cust_bill_ApplicationCommon.t b/FS/t/cust_bill_ApplicationCommon.t new file mode 100644 index 000000000..fa03d3420 --- /dev/null +++ b/FS/t/cust_bill_ApplicationCommon.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_ApplicationCommon; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_bill_pay_pkg.t b/FS/t/cust_bill_pay_pkg.t new file mode 100644 index 000000000..b8fcddb41 --- /dev/null +++ b/FS/t/cust_bill_pay_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pay_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_credit_bill_pkg.t b/FS/t/cust_credit_bill_pkg.t new file mode 100644 index 000000000..4eb84c327 --- /dev/null +++ b/FS/t/cust_credit_bill_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_credit_bill_pkg; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 6af1b1bfa25e5ececef5e0dcd38b55917121cee2 Mon Sep 17 00:00:00 2001 From: jeff Date: Sat, 26 Aug 2006 23:15:14 +0000 Subject: batch refactor continued --- FS/t/cust_bill_pay_batch.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_bill_pay_batch.t (limited to 'FS/t') diff --git a/FS/t/cust_bill_pay_batch.t b/FS/t/cust_bill_pay_batch.t new file mode 100644 index 000000000..bc3a8277c --- /dev/null +++ b/FS/t/cust_bill_pay_batch.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pay_batch; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 30c3ff2acf90e1386fae00759078899c859faf36 Mon Sep 17 00:00:00 2001 From: jeff Date: Tue, 3 Oct 2006 22:44:28 +0000 Subject: Enhanced customer notes --- FS/t/cust_main_note.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_main_note.t (limited to 'FS/t') diff --git a/FS/t/cust_main_note.t b/FS/t/cust_main_note.t new file mode 100644 index 000000000..41a7bac0b --- /dev/null +++ b/FS/t/cust_main_note.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_main_note; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From ce98306f315a53f2ac4b8c010341c4f84bf728a8 Mon Sep 17 00:00:00 2001 From: jeff Date: Thu, 19 Oct 2006 14:29:27 +0000 Subject: suspension and cancellation reasons --- FS/t/cancel_reason.t | 5 ----- FS/t/cust_pkg_reason.t | 5 +++++ FS/t/reason.t | 5 +++++ FS/t/reason_type.t | 5 +++++ 4 files changed, 15 insertions(+), 5 deletions(-) delete mode 100644 FS/t/cancel_reason.t create mode 100644 FS/t/cust_pkg_reason.t create mode 100644 FS/t/reason.t create mode 100644 FS/t/reason_type.t (limited to 'FS/t') diff --git a/FS/t/cancel_reason.t b/FS/t/cancel_reason.t deleted file mode 100644 index a5948f657..000000000 --- a/FS/t/cancel_reason.t +++ /dev/null @@ -1,5 +0,0 @@ -BEGIN { $| = 1; print "1..1\n" } -END {print "not ok 1\n" unless $loaded;} -use FS::cancel_reason; -$loaded=1; -print "ok 1\n"; diff --git a/FS/t/cust_pkg_reason.t b/FS/t/cust_pkg_reason.t new file mode 100644 index 000000000..2f0a4fa4f --- /dev/null +++ b/FS/t/cust_pkg_reason.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pkg_reason; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/reason.t b/FS/t/reason.t new file mode 100644 index 000000000..d5e4dc9e7 --- /dev/null +++ b/FS/t/reason.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::reason; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/reason_type.t b/FS/t/reason_type.t new file mode 100644 index 000000000..279d5b950 --- /dev/null +++ b/FS/t/reason_type.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::reason_type; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From dcdf657e77ec7b46dc69e19a849a9c133123db7c Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 14 Dec 2006 06:00:46 +0000 Subject: encryption fixes from huntsberg & jayce --- FS/t/payinfo_Mixin.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/payinfo_Mixin.t (limited to 'FS/t') diff --git a/FS/t/payinfo_Mixin.t b/FS/t/payinfo_Mixin.t new file mode 100644 index 000000000..3567c8e08 --- /dev/null +++ b/FS/t/payinfo_Mixin.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::payinfo_Mixin; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 633c48448d9468690b7ad77eb6ff7c660a286658 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 29 Dec 2006 08:51:34 +0000 Subject: service refactor! --- FS/t/registrar.t | 5 +++++ FS/t/svc_External_Common.t | 5 +++++ FS/t/svc_Parent_Mixin.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/registrar.t create mode 100644 FS/t/svc_External_Common.t create mode 100644 FS/t/svc_Parent_Mixin.t (limited to 'FS/t') diff --git a/FS/t/registrar.t b/FS/t/registrar.t new file mode 100644 index 000000000..a6ba13437 --- /dev/null +++ b/FS/t/registrar.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::registrar; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_External_Common.t b/FS/t/svc_External_Common.t new file mode 100644 index 000000000..a0b2ea2fd --- /dev/null +++ b/FS/t/svc_External_Common.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_External_Common; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_Parent_Mixin.t b/FS/t/svc_Parent_Mixin.t new file mode 100644 index 000000000..ed9923fc0 --- /dev/null +++ b/FS/t/svc_Parent_Mixin.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_Parent_Mixin; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From bbf490232a0805750ae946da1fa7c4006d0adafa Mon Sep 17 00:00:00 2001 From: jeff Date: Wed, 31 Jan 2007 03:42:09 +0000 Subject: odds and ends --- FS/t/cust_pkg_option.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_pkg_option.t (limited to 'FS/t') diff --git a/FS/t/cust_pkg_option.t b/FS/t/cust_pkg_option.t new file mode 100644 index 000000000..12314bf80 --- /dev/null +++ b/FS/t/cust_pkg_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pkg_option; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1