From f1ee95396defc991301ac758b71bdda9df82984e Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 2 Sep 2001 04:25:55 +0000 Subject: lame testsuite and the embarassing fixes in it found --- FS/t/CGI.t | 5 +++++ FS/t/CGIwrapper.t | 5 +++++ FS/t/Conf.t | 5 +++++ FS/t/Record.t | 5 +++++ FS/t/UID.t | 5 +++++ FS/t/agent.t | 5 +++++ FS/t/agent_type.t | 5 +++++ FS/t/cust_bill.t | 5 +++++ FS/t/cust_bill_pay.t | 5 +++++ FS/t/cust_bill_pkg.t | 5 +++++ FS/t/cust_credit.t | 5 +++++ FS/t/cust_credit_bill.t | 5 +++++ FS/t/cust_credit_refund.t | 5 +++++ FS/t/cust_main.t | 5 +++++ FS/t/cust_main_county.t | 5 +++++ FS/t/cust_main_invoice.t | 5 +++++ FS/t/cust_pay.t | 5 +++++ FS/t/cust_pay_batch.t | 5 +++++ FS/t/cust_pkg.t | 5 +++++ FS/t/cust_refund.t | 5 +++++ FS/t/cust_svc.t | 5 +++++ FS/t/domain_record.t | 5 +++++ FS/t/nas.t | 5 +++++ FS/t/part_pkg.t | 5 +++++ FS/t/part_referral.t | 5 +++++ FS/t/part_svc.t | 5 +++++ FS/t/pkg_svc.t | 5 +++++ FS/t/port.t | 5 +++++ FS/t/prepay_credit.t | 5 +++++ FS/t/session.t | 5 +++++ FS/t/svc_Common.t | 5 +++++ FS/t/svc_acct.t | 5 +++++ FS/t/svc_acct_pop.t | 5 +++++ FS/t/svc_acct_sm.t | 5 +++++ FS/t/svc_domain.t | 5 +++++ FS/t/svc_forward.t | 5 +++++ FS/t/svc_www.t | 5 +++++ FS/t/type_pkgs.t | 5 +++++ 38 files changed, 190 insertions(+) create mode 100644 FS/t/CGI.t create mode 100644 FS/t/CGIwrapper.t create mode 100644 FS/t/Conf.t create mode 100644 FS/t/Record.t create mode 100644 FS/t/UID.t create mode 100644 FS/t/agent.t create mode 100644 FS/t/agent_type.t create mode 100644 FS/t/cust_bill.t create mode 100644 FS/t/cust_bill_pay.t create mode 100644 FS/t/cust_bill_pkg.t create mode 100644 FS/t/cust_credit.t create mode 100644 FS/t/cust_credit_bill.t create mode 100644 FS/t/cust_credit_refund.t create mode 100644 FS/t/cust_main.t create mode 100644 FS/t/cust_main_county.t create mode 100644 FS/t/cust_main_invoice.t create mode 100644 FS/t/cust_pay.t create mode 100644 FS/t/cust_pay_batch.t create mode 100644 FS/t/cust_pkg.t create mode 100644 FS/t/cust_refund.t create mode 100644 FS/t/cust_svc.t create mode 100644 FS/t/domain_record.t create mode 100644 FS/t/nas.t create mode 100644 FS/t/part_pkg.t create mode 100644 FS/t/part_referral.t create mode 100644 FS/t/part_svc.t create mode 100644 FS/t/pkg_svc.t create mode 100644 FS/t/port.t create mode 100644 FS/t/prepay_credit.t create mode 100644 FS/t/session.t create mode 100644 FS/t/svc_Common.t create mode 100644 FS/t/svc_acct.t create mode 100644 FS/t/svc_acct_pop.t create mode 100644 FS/t/svc_acct_sm.t create mode 100644 FS/t/svc_domain.t create mode 100644 FS/t/svc_forward.t create mode 100644 FS/t/svc_www.t create mode 100644 FS/t/type_pkgs.t (limited to 'FS/t') diff --git a/FS/t/CGI.t b/FS/t/CGI.t new file mode 100644 index 000000000..1b4e238b6 --- /dev/null +++ b/FS/t/CGI.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::CGI; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/CGIwrapper.t b/FS/t/CGIwrapper.t new file mode 100644 index 000000000..06c741c3a --- /dev/null +++ b/FS/t/CGIwrapper.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::CGIwrapper; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Conf.t b/FS/t/Conf.t new file mode 100644 index 000000000..a9f7653b3 --- /dev/null +++ b/FS/t/Conf.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Conf; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Record.t b/FS/t/Record.t new file mode 100644 index 000000000..00de1eda3 --- /dev/null +++ b/FS/t/Record.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Record; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/UID.t b/FS/t/UID.t new file mode 100644 index 000000000..9f7da4e89 --- /dev/null +++ b/FS/t/UID.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::UID; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/agent.t b/FS/t/agent.t new file mode 100644 index 000000000..769cce254 --- /dev/null +++ b/FS/t/agent.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::agent; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/agent_type.t b/FS/t/agent_type.t new file mode 100644 index 000000000..99c66a151 --- /dev/null +++ b/FS/t/agent_type.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::agent_type; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_bill.t b/FS/t/cust_bill.t new file mode 100644 index 000000000..b43f08ee2 --- /dev/null +++ b/FS/t/cust_bill.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_bill_pay.t b/FS/t/cust_bill_pay.t new file mode 100644 index 000000000..001eed01e --- /dev/null +++ b/FS/t/cust_bill_pay.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pay; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_bill_pkg.t b/FS/t/cust_bill_pkg.t new file mode 100644 index 000000000..0e45bdb0c --- /dev/null +++ b/FS/t/cust_bill_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_credit.t b/FS/t/cust_credit.t new file mode 100644 index 000000000..cddf75cff --- /dev/null +++ b/FS/t/cust_credit.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_credit; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_credit_bill.t b/FS/t/cust_credit_bill.t new file mode 100644 index 000000000..0ef54c3f1 --- /dev/null +++ b/FS/t/cust_credit_bill.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_credit_bill; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_credit_refund.t b/FS/t/cust_credit_refund.t new file mode 100644 index 000000000..6b2b599f3 --- /dev/null +++ b/FS/t/cust_credit_refund.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_credit_refund; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_main.t b/FS/t/cust_main.t new file mode 100644 index 000000000..b0ffbdb32 --- /dev/null +++ b/FS/t/cust_main.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_main; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_main_county.t b/FS/t/cust_main_county.t new file mode 100644 index 000000000..dd6119911 --- /dev/null +++ b/FS/t/cust_main_county.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_main_county; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_main_invoice.t b/FS/t/cust_main_invoice.t new file mode 100644 index 000000000..9661620e0 --- /dev/null +++ b/FS/t/cust_main_invoice.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_main_invoice; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_pay.t b/FS/t/cust_pay.t new file mode 100644 index 000000000..f6d0b7571 --- /dev/null +++ b/FS/t/cust_pay.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pay; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_pay_batch.t b/FS/t/cust_pay_batch.t new file mode 100644 index 000000000..02b572c15 --- /dev/null +++ b/FS/t/cust_pay_batch.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pay_batch; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_pkg.t b/FS/t/cust_pkg.t new file mode 100644 index 000000000..c6a686061 --- /dev/null +++ b/FS/t/cust_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_refund.t b/FS/t/cust_refund.t new file mode 100644 index 000000000..91583da28 --- /dev/null +++ b/FS/t/cust_refund.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_refund; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/cust_svc.t b/FS/t/cust_svc.t new file mode 100644 index 000000000..267d731db --- /dev/null +++ b/FS/t/cust_svc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_svc; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/domain_record.t b/FS/t/domain_record.t new file mode 100644 index 000000000..794518ccf --- /dev/null +++ b/FS/t/domain_record.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::domain_record; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/nas.t b/FS/t/nas.t new file mode 100644 index 000000000..6f8ae36d2 --- /dev/null +++ b/FS/t/nas.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::nas; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg.t b/FS/t/part_pkg.t new file mode 100644 index 000000000..fd96073f9 --- /dev/null +++ b/FS/t/part_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_referral.t b/FS/t/part_referral.t new file mode 100644 index 000000000..d20b97930 --- /dev/null +++ b/FS/t/part_referral.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_referral; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_svc.t b/FS/t/part_svc.t new file mode 100644 index 000000000..bdb2a7aca --- /dev/null +++ b/FS/t/part_svc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_svc; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/pkg_svc.t b/FS/t/pkg_svc.t new file mode 100644 index 000000000..77d34295a --- /dev/null +++ b/FS/t/pkg_svc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::pkg_svc; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/port.t b/FS/t/port.t new file mode 100644 index 000000000..46377aaf9 --- /dev/null +++ b/FS/t/port.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::port; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/prepay_credit.t b/FS/t/prepay_credit.t new file mode 100644 index 000000000..e7626bdf1 --- /dev/null +++ b/FS/t/prepay_credit.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::prepay_credit; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/session.t b/FS/t/session.t new file mode 100644 index 000000000..c4b714ea4 --- /dev/null +++ b/FS/t/session.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::session; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_Common.t b/FS/t/svc_Common.t new file mode 100644 index 000000000..ed49e1e49 --- /dev/null +++ b/FS/t/svc_Common.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_Common; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_acct.t b/FS/t/svc_acct.t new file mode 100644 index 000000000..9ca78c9d1 --- /dev/null +++ b/FS/t/svc_acct.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_acct; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_acct_pop.t b/FS/t/svc_acct_pop.t new file mode 100644 index 000000000..e612c40af --- /dev/null +++ b/FS/t/svc_acct_pop.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_acct_pop; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_acct_sm.t b/FS/t/svc_acct_sm.t new file mode 100644 index 000000000..1082f2cdb --- /dev/null +++ b/FS/t/svc_acct_sm.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_acct_sm; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_domain.t b/FS/t/svc_domain.t new file mode 100644 index 000000000..4d91898ac --- /dev/null +++ b/FS/t/svc_domain.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_domain; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_forward.t b/FS/t/svc_forward.t new file mode 100644 index 000000000..d653d34ef --- /dev/null +++ b/FS/t/svc_forward.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_forward; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_www.t b/FS/t/svc_www.t new file mode 100644 index 000000000..eb4e83fbc --- /dev/null +++ b/FS/t/svc_www.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_www; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/type_pkgs.t b/FS/t/type_pkgs.t new file mode 100644 index 000000000..98401805c --- /dev/null +++ b/FS/t/type_pkgs.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::type_pkgs; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 57d69d5c1f98f778a0df82795ce21ee7bd21042a Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 6 Sep 2001 20:42:00 +0000 Subject: finally fix part_svc!!! --- FS/t/part_svc_column.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_svc_column.t (limited to 'FS/t') diff --git a/FS/t/part_svc_column.t b/FS/t/part_svc_column.t new file mode 100644 index 000000000..467025c1e --- /dev/null +++ b/FS/t/part_svc_column.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_svc_column; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 3beb58199322355f8caa166000bb94e9419b4232 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 7 Sep 2001 20:17:50 +0000 Subject: fix RADIUS attribute capitalization --- FS/t/raddb.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/raddb.t (limited to 'FS/t') diff --git a/FS/t/raddb.t b/FS/t/raddb.t new file mode 100644 index 000000000..ac28d0798 --- /dev/null +++ b/FS/t/raddb.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::raddb; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From f5266a4d07d116efd732f433d0f4f3a47b143a7d Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 11 Sep 2001 00:08:18 +0000 Subject: faster (cached) fuzzy searches prelim. job queues! fixed part_svc editing --- FS/t/queue.t | 5 +++++ FS/t/queue_arg.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/queue.t create mode 100644 FS/t/queue_arg.t (limited to 'FS/t') diff --git a/FS/t/queue.t b/FS/t/queue.t new file mode 100644 index 000000000..43e33730e --- /dev/null +++ b/FS/t/queue.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::queue; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/queue_arg.t b/FS/t/queue_arg.t new file mode 100644 index 000000000..cf3f91dfe --- /dev/null +++ b/FS/t/queue_arg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::queue_arg; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 8ca6f203e5dae208d7af581d68671fe47c5e1a1a Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 26 Sep 2001 09:17:06 +0000 Subject: add part_pop_local table --- FS/t/part_pop_local.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_pop_local.t (limited to 'FS/t') diff --git a/FS/t/part_pop_local.t b/FS/t/part_pop_local.t new file mode 100644 index 000000000..4e4ad17f5 --- /dev/null +++ b/FS/t/part_pop_local.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pop_local; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From e6b57805f6b3e76448ab9b6d280f2c53bc1410f3 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 24 Oct 2001 15:29:31 +0000 Subject: preliminary web config editor new config files: username-ampersand, passwordmax fs-setup updates get rid of old and crufty and unused registries/ config foo documentation updates --- FS/t/ConfItem.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/ConfItem.t (limited to 'FS/t') diff --git a/FS/t/ConfItem.t b/FS/t/ConfItem.t new file mode 100644 index 000000000..c7932d7e3 --- /dev/null +++ b/FS/t/ConfItem.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::ConfItem; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From fd72d2af8120195f96826eb044e217dbfcaee1c7 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 3 Nov 2001 17:49:52 +0000 Subject: new 'jsearch' call for big joined searches & caching support preliminary customer browse optimizations, much faster! --- FS/t/SearchCache.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/SearchCache.t (limited to 'FS/t') diff --git a/FS/t/SearchCache.t b/FS/t/SearchCache.t new file mode 100644 index 000000000..3c26f3528 --- /dev/null +++ b/FS/t/SearchCache.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::SearchCache; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 69a0a7504f84aa9bb1f204d1f3522e1520e0885e Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 3 Jan 2002 17:40:26 +0000 Subject: more schema changes: part_bill_event and cust_bill_event tables remove old 1.4.0pre READMEs --- FS/t/cust_bill_event.t | 5 +++++ FS/t/part_bill_event.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/cust_bill_event.t create mode 100644 FS/t/part_bill_event.t (limited to 'FS/t') diff --git a/FS/t/cust_bill_event.t b/FS/t/cust_bill_event.t new file mode 100644 index 000000000..0e2ca3e24 --- /dev/null +++ b/FS/t/cust_bill_event.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_event; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_bill_event.t b/FS/t/part_bill_event.t new file mode 100644 index 000000000..5626a9f97 --- /dev/null +++ b/FS/t/part_bill_event.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_bill_event; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 1d4951dbd6af315840a8a633bae5a5739ec5d82c Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 17 Feb 2002 19:12:12 +0000 Subject: get ride of CGIwrapper.pm --- FS/t/CGIwrapper.t | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 FS/t/CGIwrapper.t (limited to 'FS/t') diff --git a/FS/t/CGIwrapper.t b/FS/t/CGIwrapper.t deleted file mode 100644 index 06c741c3a..000000000 --- a/FS/t/CGIwrapper.t +++ /dev/null @@ -1,5 +0,0 @@ -BEGIN { $| = 1; print "1..1\n" } -END {print "not ok 1\n" unless $loaded;} -use FS::CGIwrapper; -$loaded=1; -print "ok 1\n"; -- cgit v1.2.1 From b159f42fa3f48cc2ca3b43773e7661e17d2fb072 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 22 Mar 2002 12:49:43 +0000 Subject: more new export... --- FS/t/part_export.t | 5 +++++ FS/t/part_export_option.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/part_export.t create mode 100644 FS/t/part_export_option.t (limited to 'FS/t') diff --git a/FS/t/part_export.t b/FS/t/part_export.t new file mode 100644 index 000000000..26b398791 --- /dev/null +++ b/FS/t/part_export.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export_option.t b/FS/t/part_export_option.t new file mode 100644 index 000000000..13200c213 --- /dev/null +++ b/FS/t/part_export_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export_option; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 20bb426a02c0ea54d8feaea7c5da51735ab70293 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 22 Mar 2002 18:56:33 +0000 Subject: RADIUS groups on the way! --- FS/t/radius_usergroup.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/radius_usergroup.t (limited to 'FS/t') diff --git a/FS/t/radius_usergroup.t b/FS/t/radius_usergroup.t new file mode 100644 index 000000000..325742cf5 --- /dev/null +++ b/FS/t/radius_usergroup.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::radius_usergroup; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 20d1b5c39c3674f3fdf5c0f784697a4442658648 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 5 Apr 2002 16:37:42 +0000 Subject: oops forgot these from working on the road --- FS/t/part_export-infostreet.t | 5 +++++ FS/t/part_export-sqlradius.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/part_export-infostreet.t create mode 100644 FS/t/part_export-sqlradius.t (limited to 'FS/t') diff --git a/FS/t/part_export-infostreet.t b/FS/t/part_export-infostreet.t new file mode 100644 index 000000000..1b3341825 --- /dev/null +++ b/FS/t/part_export-infostreet.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::infostreet; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-sqlradius.t b/FS/t/part_export-sqlradius.t new file mode 100644 index 000000000..5fb23a5a6 --- /dev/null +++ b/FS/t/part_export-sqlradius.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::sqlradius; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 87af741da0dd5f6a76bbb566b4d6c54cd5b15315 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 5 Apr 2002 23:51:18 +0000 Subject: - add message catalog table & beginning of web interface - add security_phrase and conf option to svc_acct.pm - random other stuff --- FS/t/msgcat.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/msgcat.t (limited to 'FS/t') diff --git a/FS/t/msgcat.t b/FS/t/msgcat.t new file mode 100644 index 000000000..c38c63935 --- /dev/null +++ b/FS/t/msgcat.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::msgcat; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From a7c1b602f88c177db34477ed4cdc1f72603f8995 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 11 Apr 2002 22:05:31 +0000 Subject: (almost) everything for bug#375 - create export_svc table - part_svc to part_export is now properly many-to-many, not one-to-many still need to finish service editing (choosing exports) in httemplate/edit/part_svc.cgi and httemplate/edti/process/part_svc.cgi and do somethinga about that manual $svcdb = 'svc_acct' in httemplate/edit/part_export.cgi (do part_export records need a svcdb? probably not... should be able to just pass an svcdb on creation of new exports, move the big %exports hash into part_export.pm and allow httemplate/edit/part_svc.cgi to query it for exports that can apply to a given svcdb.... --- FS/t/export_svc.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/export_svc.t (limited to 'FS/t') diff --git a/FS/t/export_svc.t b/FS/t/export_svc.t new file mode 100644 index 000000000..773c5dea7 --- /dev/null +++ b/FS/t/export_svc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::export_svc; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From e6ea57971831f25d682d97a0ba508c39b66ecd8b Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 12 Apr 2002 13:22:03 +0000 Subject: - should finish off the part_svc -> part_export s/one-to-many/many-to-many/ transition (closes: Bug#375) - fixes a nasty export scoping bug with message catalogs, whew --- FS/t/Msgcat.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/Msgcat.t (limited to 'FS/t') diff --git a/FS/t/Msgcat.t b/FS/t/Msgcat.t new file mode 100644 index 000000000..29e71b33c --- /dev/null +++ b/FS/t/Msgcat.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Msgcat; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 9bf26ed4b065b12826fc2980ff277a2f3be25c1d Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 14 Apr 2002 09:11:22 +0000 Subject: - move cyrus, shellcommands, CP exports exports to new-style - skeleton files for vpopmail exports - documentation updates - add big schema diagram to docs --- FS/t/part_export-cp.t | 5 +++++ FS/t/part_export-cyrus.t | 5 +++++ FS/t/part_export-shellcommands.t | 5 +++++ FS/t/part_export-vpopmail.t | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 FS/t/part_export-cp.t create mode 100644 FS/t/part_export-cyrus.t create mode 100644 FS/t/part_export-shellcommands.t create mode 100644 FS/t/part_export-vpopmail.t (limited to 'FS/t') diff --git a/FS/t/part_export-cp.t b/FS/t/part_export-cp.t new file mode 100644 index 000000000..bbefa6c1b --- /dev/null +++ b/FS/t/part_export-cp.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::cp; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-cyrus.t b/FS/t/part_export-cyrus.t new file mode 100644 index 000000000..e0b3f350e --- /dev/null +++ b/FS/t/part_export-cyrus.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::cyrus; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-shellcommands.t b/FS/t/part_export-shellcommands.t new file mode 100644 index 000000000..7bb47d3f8 --- /dev/null +++ b/FS/t/part_export-shellcommands.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::shellcommands; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-vpopmail.t b/FS/t/part_export-vpopmail.t new file mode 100644 index 000000000..2e37114a2 --- /dev/null +++ b/FS/t/part_export-vpopmail.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::vpopmail; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From f36b6a178c9811357ff5d5291874aa239d22bc2a Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 4 May 2002 15:00:18 +0000 Subject: schema changes for proper texas tax --- FS/t/cust_tax_exempt.pm | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_tax_exempt.pm (limited to 'FS/t') diff --git a/FS/t/cust_tax_exempt.pm b/FS/t/cust_tax_exempt.pm new file mode 100644 index 000000000..8af13e3aa --- /dev/null +++ b/FS/t/cust_tax_exempt.pm @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_tax_exempt; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From a63b2729682586d8860290576e9307629424dbe0 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 9 May 2002 12:38:40 +0000 Subject: texas tax! --- FS/t/cust_tax_exempt.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_tax_exempt.t (limited to 'FS/t') diff --git a/FS/t/cust_tax_exempt.t b/FS/t/cust_tax_exempt.t new file mode 100644 index 000000000..8af13e3aa --- /dev/null +++ b/FS/t/cust_tax_exempt.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_tax_exempt; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From eb7c552dd8290d6b33a4e026c5dc21ebf01105cf Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 15 May 2002 13:24:26 +0000 Subject: queue dependancies --- FS/t/queue_depend.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/queue_depend.t (limited to 'FS/t') diff --git a/FS/t/queue_depend.t b/FS/t/queue_depend.t new file mode 100644 index 000000000..8eaa2cdb3 --- /dev/null +++ b/FS/t/queue_depend.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::queue_depend; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 9554f2be960fdb511a4c9d8b519261614319f0aa Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 16 May 2002 14:28:57 +0000 Subject: adding (stub) bsdshell and textradius exports --- FS/t/part_export-bsdshell.t | 5 +++++ FS/t/part_export-textradius.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/part_export-bsdshell.t create mode 100644 FS/t/part_export-textradius.t (limited to 'FS/t') diff --git a/FS/t/part_export-bsdshell.t b/FS/t/part_export-bsdshell.t new file mode 100644 index 000000000..eaf417a70 --- /dev/null +++ b/FS/t/part_export-bsdshell.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::bsdshell; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-textradius.t b/FS/t/part_export-textradius.t new file mode 100644 index 000000000..d8a48a0c8 --- /dev/null +++ b/FS/t/part_export-textradius.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::textradius; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 2b98ba63e33b3ab12d3561cf1179911eedcdbde4 Mon Sep 17 00:00:00 2001 From: khoff Date: Fri, 31 May 2002 18:48:13 +0000 Subject: Don't ask me. I just hacked Ivan's test. --- FS/t/part_export-sqlmail.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-sqlmail.t (limited to 'FS/t') diff --git a/FS/t/part_export-sqlmail.t b/FS/t/part_export-sqlmail.t new file mode 100644 index 000000000..b048a75a5 --- /dev/null +++ b/FS/t/part_export-sqlmail.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::sqlmail; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 76e9abe03157deaa2a5ec7253624c9a59464b8fc Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 27 Jun 2002 09:19:33 +0000 Subject: export updates --- FS/t/part_export-null.t | 5 +++++ FS/t/part_export-sysvshell.t | 5 +++++ FS/t/part_export-www_shellcommands.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/part_export-null.t create mode 100644 FS/t/part_export-sysvshell.t create mode 100644 FS/t/part_export-www_shellcommands.t (limited to 'FS/t') diff --git a/FS/t/part_export-null.t b/FS/t/part_export-null.t new file mode 100644 index 000000000..055cdcee6 --- /dev/null +++ b/FS/t/part_export-null.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::null; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-sysvshell.t b/FS/t/part_export-sysvshell.t new file mode 100644 index 000000000..7fc24acb1 --- /dev/null +++ b/FS/t/part_export-sysvshell.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::sysvshell; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-www_shellcommands.t b/FS/t/part_export-www_shellcommands.t new file mode 100644 index 000000000..2ea79cf97 --- /dev/null +++ b/FS/t/part_export-www_shellcommands.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::www_shellcommands; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 4c7ddc2010ddeaca45d40140993b05d43b7fe030 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 27 Jun 2002 09:23:05 +0000 Subject: null bind exports --- FS/t/part_export-bind.t | 5 +++++ FS/t/part_export-bind_slave.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/part_export-bind.t create mode 100644 FS/t/part_export-bind_slave.t (limited to 'FS/t') diff --git a/FS/t/part_export-bind.t b/FS/t/part_export-bind.t new file mode 100644 index 000000000..d0c96be40 --- /dev/null +++ b/FS/t/part_export-bind.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::bind; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-bind_slave.t b/FS/t/part_export-bind_slave.t new file mode 100644 index 000000000..c6a038610 --- /dev/null +++ b/FS/t/part_export-bind_slave.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::bind_slave; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 87e22680728124c7d339a32d99f61442ccc204d7 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 30 Jun 2002 02:13:33 +0000 Subject: export! --- FS/t/part_export-shellcommands_withdomain.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-shellcommands_withdomain.t (limited to 'FS/t') diff --git a/FS/t/part_export-shellcommands_withdomain.t b/FS/t/part_export-shellcommands_withdomain.t new file mode 100644 index 000000000..c0bd1bbb0 --- /dev/null +++ b/FS/t/part_export-shellcommands_withdomain.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::shellcommands_withdomain; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 0da4c69a66e13410b0eff18966e13170d1306f22 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 3 Jul 2002 10:33:37 +0000 Subject: preload all dbdefs --- FS/t/InitHandler.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/InitHandler.t (limited to 'FS/t') diff --git a/FS/t/InitHandler.t b/FS/t/InitHandler.t new file mode 100644 index 000000000..0ce60c833 --- /dev/null +++ b/FS/t/InitHandler.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::InitHandler; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 8bc1ee56aea60731d98efd0e2399b202e9969187 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 3 Jul 2002 14:21:56 +0000 Subject: http export --- FS/t/part_export-http.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-http.t (limited to 'FS/t') diff --git a/FS/t/part_export-http.t b/FS/t/part_export-http.t new file mode 100644 index 000000000..ba7209d10 --- /dev/null +++ b/FS/t/part_export-http.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::http_post; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 50c327ded5ad9b96c5f5975643d46511abc01d49 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 3 Jul 2002 14:45:59 +0000 Subject: s/_post// --- FS/t/part_export-http.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FS/t') diff --git a/FS/t/part_export-http.t b/FS/t/part_export-http.t index ba7209d10..ea41b939f 100644 --- a/FS/t/part_export-http.t +++ b/FS/t/part_export-http.t @@ -1,5 +1,5 @@ BEGIN { $| = 1; print "1..1\n" } END {print "not ok 1\n" unless $loaded;} -use FS::part_export::http_post; +use FS::part_export::http; $loaded=1; print "ok 1\n"; -- cgit v1.2.1 From 920c0d8dea4535893157a547c87dda63dca64599 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 22 Jul 2002 10:51:22 +0000 Subject: adding --- FS/t/ClientAPI.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/ClientAPI.t (limited to 'FS/t') diff --git a/FS/t/ClientAPI.t b/FS/t/ClientAPI.t new file mode 100644 index 000000000..973d8dada --- /dev/null +++ b/FS/t/ClientAPI.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::ClientAPI; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From eb6cb474f653dc738b26c9f8ca9b43e9b6f1e546 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 23 Aug 2002 23:43:51 +0000 Subject: add domain_shellcommands export --- FS/t/part_export-domain_shellcommands.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-domain_shellcommands.t (limited to 'FS/t') diff --git a/FS/t/part_export-domain_shellcommands.t b/FS/t/part_export-domain_shellcommands.t new file mode 100644 index 000000000..a2a44fbfb --- /dev/null +++ b/FS/t/part_export-domain_shellcommands.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::domain_shellcommands; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 3595c874f8e476e58b98b7ab6d86918d4dbb1d5c Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 17 Sep 2002 09:19:42 +0000 Subject: remove svc_acct_sm --- FS/t/svc_acct_sm.t | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 FS/t/svc_acct_sm.t (limited to 'FS/t') diff --git a/FS/t/svc_acct_sm.t b/FS/t/svc_acct_sm.t deleted file mode 100644 index 1082f2cdb..000000000 --- a/FS/t/svc_acct_sm.t +++ /dev/null @@ -1,5 +0,0 @@ -BEGIN { $| = 1; print "1..1\n" } -END {print "not ok 1\n" unless $loaded;} -use FS::svc_acct_sm; -$loaded=1; -print "ok 1\n"; -- cgit v1.2.1 From b0995f6ec4eeaad9c72be4963970f1d69fe1ef02 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 18 Nov 2002 10:15:37 +0000 Subject: preliminary ldap export --- FS/t/part_export-ldap.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-ldap.t (limited to 'FS/t') diff --git a/FS/t/part_export-ldap.t b/FS/t/part_export-ldap.t new file mode 100644 index 000000000..826c3418d --- /dev/null +++ b/FS/t/part_export-ldap.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::ldap; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From c232fac0743999105f6948b9fa352fe2293b09f8 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 6 Feb 2003 05:26:50 +0000 Subject: time/data detail on invoices --- FS/t/cust_bill_pkg_detail.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_bill_pkg_detail.t (limited to 'FS/t') diff --git a/FS/t/cust_bill_pkg_detail.t b/FS/t/cust_bill_pkg_detail.t new file mode 100644 index 000000000..ea6e3d125 --- /dev/null +++ b/FS/t/cust_bill_pkg_detail.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_bill_pkg_detail; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 9aec22e5fd00800c6e7952ae5b85cc639d4b1e78 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 20 Mar 2003 03:41:03 +0000 Subject: apache export! --- FS/t/part_export-apache.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-apache.t (limited to 'FS/t') diff --git a/FS/t/part_export-apache.t b/FS/t/part_export-apache.t new file mode 100644 index 000000000..b9995080f --- /dev/null +++ b/FS/t/part_export-apache.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::apache; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 60527016538d1794227983d99ce3b77c8fcd7426 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 22 Apr 2003 04:39:40 +0000 Subject: - mysql 4.1 is available; update documentation - remove last vestiges of 1.3-style qmail/vpopmail exports from svc_domain and svc_forward; add appropriate exports (closes: Bug#299) --- FS/t/part_export-forward_shellcommands.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-forward_shellcommands.t (limited to 'FS/t') diff --git a/FS/t/part_export-forward_shellcommands.t b/FS/t/part_export-forward_shellcommands.t new file mode 100644 index 000000000..78ca68d10 --- /dev/null +++ b/FS/t/part_export-forward_shellcommands.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::forward_shellcommands; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From fd9138f66cf7f3ab9557e0beebb4e2657a59e34c Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 19 May 2003 12:00:45 +0000 Subject: maintenance: - add FS::Misc with send_email subroutine, remove all duplicate code from various modules - move the realtime_bop from cust_bill to cust_main & change usage slightly. invnum is no longer required. FS::cust_bill::realtime_bop remains as a wrapper. self-service: - fix some syntax errors, make payment UI (step one) really should be working now --- FS/t/Misc.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/Misc.t (limited to 'FS/t') diff --git a/FS/t/Misc.t b/FS/t/Misc.t new file mode 100644 index 000000000..cc7751ab6 --- /dev/null +++ b/FS/t/Misc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Misc; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 70997699eb64ce36ca408214cfe4dbc502d7ca58 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 30 Jun 2003 12:22:24 +0000 Subject: adding sqlradius_withdomain export including realms, closes: bug#514 --- FS/t/part_export-sqlradius_withdomain.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-sqlradius_withdomain.t (limited to 'FS/t') diff --git a/FS/t/part_export-sqlradius_withdomain.t b/FS/t/part_export-sqlradius_withdomain.t new file mode 100644 index 000000000..504bf679f --- /dev/null +++ b/FS/t/part_export-sqlradius_withdomain.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::sqlradius_withdomain; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 31d6d0e8d0d624cd051440acf322cd8893c1026e Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 23 Dec 2003 02:36:38 +0000 Subject: add svc_external --- FS/t/svc_broadband.t | 5 +++++ FS/t/svc_external.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/svc_broadband.t create mode 100644 FS/t/svc_external.t (limited to 'FS/t') diff --git a/FS/t/svc_broadband.t b/FS/t/svc_broadband.t new file mode 100644 index 000000000..02dc1124a --- /dev/null +++ b/FS/t/svc_broadband.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_broadband; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_external.t b/FS/t/svc_external.t new file mode 100644 index 000000000..20a676784 --- /dev/null +++ b/FS/t/svc_external.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_external; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 8590c9bef767a6eb95e9b8ba1f940d82d7193093 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 28 Feb 2004 22:49:14 +0000 Subject: adding --- FS/t/acct_snarf.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/acct_snarf.t (limited to 'FS/t') diff --git a/FS/t/acct_snarf.t b/FS/t/acct_snarf.t new file mode 100644 index 000000000..642760f20 --- /dev/null +++ b/FS/t/acct_snarf.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::acct_snarf; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 654234a526b5447ec02970962cccb1cf879796c8 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 5 Mar 2004 14:34:24 +0000 Subject: beginning of OO reporting interface, create acadia-requested crosstab reports --- FS/t/Report-Table-Monthly.t | 5 +++++ FS/t/Report-Table.t | 5 +++++ FS/t/Report.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/Report-Table-Monthly.t create mode 100644 FS/t/Report-Table.t create mode 100644 FS/t/Report.t (limited to 'FS/t') diff --git a/FS/t/Report-Table-Monthly.t b/FS/t/Report-Table-Monthly.t new file mode 100644 index 000000000..6ff365d1c --- /dev/null +++ b/FS/t/Report-Table-Monthly.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Report::Table::Monthly; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Report-Table.t b/FS/t/Report-Table.t new file mode 100644 index 000000000..866d4981e --- /dev/null +++ b/FS/t/Report-Table.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Report::Table; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/Report.t b/FS/t/Report.t new file mode 100644 index 000000000..76d6ea489 --- /dev/null +++ b/FS/t/Report.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Report; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 9769323a1645b8f298ea4469261da54fed7c1225 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 24 Mar 2004 09:35:57 +0000 Subject: add missing compile tests --- FS/t/part_export-communigate_pro_singledomain.t | 5 +++++ FS/t/part_export-postfix.t | 5 +++++ FS/t/part_export-router.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/part_export-communigate_pro_singledomain.t create mode 100644 FS/t/part_export-postfix.t create mode 100644 FS/t/part_export-router.t (limited to 'FS/t') diff --git a/FS/t/part_export-communigate_pro_singledomain.t b/FS/t/part_export-communigate_pro_singledomain.t new file mode 100644 index 000000000..6f8a64e0f --- /dev/null +++ b/FS/t/part_export-communigate_pro_singledomain.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::communigate_pro_singledomain; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-postfix.t b/FS/t/part_export-postfix.t new file mode 100644 index 000000000..9518caad6 --- /dev/null +++ b/FS/t/part_export-postfix.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::postfix; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_export-router.t b/FS/t/part_export-router.t new file mode 100644 index 000000000..54e4b63de --- /dev/null +++ b/FS/t/part_export-router.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::router; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From e7fc7ebf927a7ab7159ad3cc8fa1530d7ce22a5a Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 24 Mar 2004 14:22:04 +0000 Subject: adding passwdfile export base class --- FS/t/part_export-passwdfile.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-passwdfile.t (limited to 'FS/t') diff --git a/FS/t/part_export-passwdfile.t b/FS/t/part_export-passwdfile.t new file mode 100644 index 000000000..0f18f3044 --- /dev/null +++ b/FS/t/part_export-passwdfile.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::passwdfile; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From df33a04853368c1ccb95ea1718b1ebad93b78672 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 13 Apr 2004 20:01:57 +0000 Subject: adding forgotten test --- FS/t/part_export-communigate_pro.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-communigate_pro.t (limited to 'FS/t') diff --git a/FS/t/part_export-communigate_pro.t b/FS/t/part_export-communigate_pro.t new file mode 100644 index 000000000..88b8b64e0 --- /dev/null +++ b/FS/t/part_export-communigate_pro.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::communigate_pro; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From b970f3999c9a49146ec2f5224a60057723304d1b Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 19 May 2004 13:41:27 +0000 Subject: adding acct_sql export --- FS/t/part_export-acct_sql.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-acct_sql.t (limited to 'FS/t') diff --git a/FS/t/part_export-acct_sql.t b/FS/t/part_export-acct_sql.t new file mode 100644 index 000000000..9eed47259 --- /dev/null +++ b/FS/t/part_export-acct_sql.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::acct_sql; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 157e8bdba110b7aac022bd2c2f7b377d3c5b2f85 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 29 Jun 2004 04:02:45 +0000 Subject: add cust_pay_refund table to refund payments --- FS/t/cust_pay_refund.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_pay_refund.t (limited to 'FS/t') diff --git a/FS/t/cust_pay_refund.t b/FS/t/cust_pay_refund.t new file mode 100644 index 000000000..85d6c2316 --- /dev/null +++ b/FS/t/cust_pay_refund.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pay_refund; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From cfe85e45bcba97089988b4dc22a895aec687f2c3 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 6 Jul 2004 13:26:21 +0000 Subject: add cust_pay_void table and payment voiding web ui part one --- FS/t/cust_pay_void.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_pay_void.t (limited to 'FS/t') diff --git a/FS/t/cust_pay_void.t b/FS/t/cust_pay_void.t new file mode 100644 index 000000000..dca9becd1 --- /dev/null +++ b/FS/t/cust_pay_void.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_pay_void; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 6fe8172b11d0369d0b1274d6825ec0c57afe8001 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 26 Oct 2004 11:26:35 +0000 Subject: modular price plans! --- FS/t/part_pkg-flat.t | 5 +++++ FS/t/part_pkg-flat_comission.t | 5 +++++ FS/t/part_pkg-flat_comission_cust.t | 5 +++++ FS/t/part_pkg-flat_comission_pkg.t | 5 +++++ FS/t/part_pkg-flat_delayed.t | 5 +++++ FS/t/part_pkg-prorate.t | 5 +++++ FS/t/part_pkg-sesmon_hour.t | 5 +++++ FS/t/part_pkg-sesmon_minute.t | 5 +++++ FS/t/part_pkg-sql_external.t | 5 +++++ FS/t/part_pkg-sql_generic.t | 5 +++++ FS/t/part_pkg-sqlradacct_hour.t | 5 +++++ FS/t/part_pkg-subscription.t | 5 +++++ FS/t/part_pkg_option.t | 5 +++++ 13 files changed, 65 insertions(+) create mode 100644 FS/t/part_pkg-flat.t create mode 100644 FS/t/part_pkg-flat_comission.t create mode 100644 FS/t/part_pkg-flat_comission_cust.t create mode 100644 FS/t/part_pkg-flat_comission_pkg.t create mode 100644 FS/t/part_pkg-flat_delayed.t create mode 100644 FS/t/part_pkg-prorate.t create mode 100644 FS/t/part_pkg-sesmon_hour.t create mode 100644 FS/t/part_pkg-sesmon_minute.t create mode 100644 FS/t/part_pkg-sql_external.t create mode 100644 FS/t/part_pkg-sql_generic.t create mode 100644 FS/t/part_pkg-sqlradacct_hour.t create mode 100644 FS/t/part_pkg-subscription.t create mode 100644 FS/t/part_pkg_option.t (limited to 'FS/t') diff --git a/FS/t/part_pkg-flat.t b/FS/t/part_pkg-flat.t new file mode 100644 index 000000000..3eee7a7c7 --- /dev/null +++ b/FS/t/part_pkg-flat.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::flat; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-flat_comission.t b/FS/t/part_pkg-flat_comission.t new file mode 100644 index 000000000..fefa57eb4 --- /dev/null +++ b/FS/t/part_pkg-flat_comission.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::flat_comission; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-flat_comission_cust.t b/FS/t/part_pkg-flat_comission_cust.t new file mode 100644 index 000000000..05d3ac417 --- /dev/null +++ b/FS/t/part_pkg-flat_comission_cust.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::flat_comission_cust; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-flat_comission_pkg.t b/FS/t/part_pkg-flat_comission_pkg.t new file mode 100644 index 000000000..851b58db1 --- /dev/null +++ b/FS/t/part_pkg-flat_comission_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::flat_comission_pkg; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-flat_delayed.t b/FS/t/part_pkg-flat_delayed.t new file mode 100644 index 000000000..ed638462b --- /dev/null +++ b/FS/t/part_pkg-flat_delayed.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::flat_delayed; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-prorate.t b/FS/t/part_pkg-prorate.t new file mode 100644 index 000000000..d32b1c095 --- /dev/null +++ b/FS/t/part_pkg-prorate.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::prorate; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-sesmon_hour.t b/FS/t/part_pkg-sesmon_hour.t new file mode 100644 index 000000000..4f02cfcf4 --- /dev/null +++ b/FS/t/part_pkg-sesmon_hour.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::sesmon_hour; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-sesmon_minute.t b/FS/t/part_pkg-sesmon_minute.t new file mode 100644 index 000000000..6ceaa3ce2 --- /dev/null +++ b/FS/t/part_pkg-sesmon_minute.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::sesmon_minute; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-sql_external.t b/FS/t/part_pkg-sql_external.t new file mode 100644 index 000000000..366ed01ef --- /dev/null +++ b/FS/t/part_pkg-sql_external.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::sql_external; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-sql_generic.t b/FS/t/part_pkg-sql_generic.t new file mode 100644 index 000000000..299a7c67c --- /dev/null +++ b/FS/t/part_pkg-sql_generic.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::sql_generic; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-sqlradacct_hour.t b/FS/t/part_pkg-sqlradacct_hour.t new file mode 100644 index 000000000..2a4ed7954 --- /dev/null +++ b/FS/t/part_pkg-sqlradacct_hour.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::sqlradacct_hour; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg-subscription.t b/FS/t/part_pkg-subscription.t new file mode 100644 index 000000000..10b44790f --- /dev/null +++ b/FS/t/part_pkg-subscription.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::subscription; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg_option.t b/FS/t/part_pkg_option.t new file mode 100644 index 000000000..6239b2d7b --- /dev/null +++ b/FS/t/part_pkg_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg_option; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 48ba2845d0119c56971d5b724661aa37e73b49dd Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 20 Nov 2004 17:26:56 +0000 Subject: first pass at VoIP rating --- FS/t/part_pkg-voip_sqlradacct.t | 5 +++++ FS/t/rate.t | 5 +++++ FS/t/rate_detail.t | 5 +++++ FS/t/rate_prefix.t | 5 +++++ FS/t/rate_region.t | 5 +++++ 5 files changed, 25 insertions(+) create mode 100644 FS/t/part_pkg-voip_sqlradacct.t create mode 100644 FS/t/rate.t create mode 100644 FS/t/rate_detail.t create mode 100644 FS/t/rate_prefix.t create mode 100644 FS/t/rate_region.t (limited to 'FS/t') diff --git a/FS/t/part_pkg-voip_sqlradacct.t b/FS/t/part_pkg-voip_sqlradacct.t new file mode 100644 index 000000000..8d542044d --- /dev/null +++ b/FS/t/part_pkg-voip_sqlradacct.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg::voip_sqlradacct; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/rate.t b/FS/t/rate.t new file mode 100644 index 000000000..ae9c8bb31 --- /dev/null +++ b/FS/t/rate.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::rate; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/rate_detail.t b/FS/t/rate_detail.t new file mode 100644 index 000000000..163972e81 --- /dev/null +++ b/FS/t/rate_detail.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::rate_detail; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/rate_prefix.t b/FS/t/rate_prefix.t new file mode 100644 index 000000000..d4bd51363 --- /dev/null +++ b/FS/t/rate_prefix.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::rate_prefix; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/rate_region.t b/FS/t/rate_region.t new file mode 100644 index 000000000..6e0db8f27 --- /dev/null +++ b/FS/t/rate_region.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::rate_region; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From f7afca1829f8496509d10806439c37fcc1349135 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 29 Dec 2004 12:00:08 +0000 Subject: historical (immutable) invoice details about services and other history infrastructure --- FS/t/h_Common.t | 5 +++++ FS/t/h_cust_svc.t | 5 +++++ FS/t/h_svc_acct.t | 5 +++++ FS/t/h_svc_broadband.t | 5 +++++ FS/t/h_svc_domain.t | 5 +++++ FS/t/h_svc_external.t | 5 +++++ FS/t/h_svc_forward.t | 5 +++++ FS/t/h_svc_www.t | 5 +++++ 8 files changed, 40 insertions(+) create mode 100644 FS/t/h_Common.t create mode 100644 FS/t/h_cust_svc.t create mode 100644 FS/t/h_svc_acct.t create mode 100644 FS/t/h_svc_broadband.t create mode 100644 FS/t/h_svc_domain.t create mode 100644 FS/t/h_svc_external.t create mode 100644 FS/t/h_svc_forward.t create mode 100644 FS/t/h_svc_www.t (limited to 'FS/t') diff --git a/FS/t/h_Common.t b/FS/t/h_Common.t new file mode 100644 index 000000000..174bb99e6 --- /dev/null +++ b/FS/t/h_Common.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_Common; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_cust_svc.t b/FS/t/h_cust_svc.t new file mode 100644 index 000000000..a7dabbea0 --- /dev/null +++ b/FS/t/h_cust_svc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_cust_svc; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_acct.t b/FS/t/h_svc_acct.t new file mode 100644 index 000000000..9c94d0894 --- /dev/null +++ b/FS/t/h_svc_acct.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_acct; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_broadband.t b/FS/t/h_svc_broadband.t new file mode 100644 index 000000000..b8e5c7c82 --- /dev/null +++ b/FS/t/h_svc_broadband.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_broadband; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_domain.t b/FS/t/h_svc_domain.t new file mode 100644 index 000000000..87d2a09bd --- /dev/null +++ b/FS/t/h_svc_domain.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_domain; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_external.t b/FS/t/h_svc_external.t new file mode 100644 index 000000000..5248f876d --- /dev/null +++ b/FS/t/h_svc_external.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_external; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_forward.t b/FS/t/h_svc_forward.t new file mode 100644 index 000000000..64731d562 --- /dev/null +++ b/FS/t/h_svc_forward.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_forward; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/h_svc_www.t b/FS/t/h_svc_www.t new file mode 100644 index 000000000..07558ce65 --- /dev/null +++ b/FS/t/h_svc_www.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_www; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 55a68e4aabe10db4d9c3ab1bb8befd2f9f4b9008 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 29 Jan 2005 12:34:12 +0000 Subject: registration codes --- FS/t/reg_code.t | 5 +++++ FS/t/reg_code_pkg.t | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 FS/t/reg_code.t create mode 100644 FS/t/reg_code_pkg.t (limited to 'FS/t') diff --git a/FS/t/reg_code.t b/FS/t/reg_code.t new file mode 100644 index 000000000..4b9599078 --- /dev/null +++ b/FS/t/reg_code.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::reg_code; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/reg_code_pkg.t b/FS/t/reg_code_pkg.t new file mode 100644 index 000000000..7f89ffaee --- /dev/null +++ b/FS/t/reg_code_pkg.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::reg_code_pkg; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From fc9e97f6cab72de473288470c0681534caf25ea5 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 8 Feb 2005 20:22:46 +0000 Subject: make self-service session cache module configurable, start framework for in-database session cache --- FS/t/ClientAPI_SessionCache.t | 5 +++++ FS/t/clientapi_session.t | 5 +++++ FS/t/clientapi_session_field.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/ClientAPI_SessionCache.t create mode 100644 FS/t/clientapi_session.t create mode 100644 FS/t/clientapi_session_field.t (limited to 'FS/t') diff --git a/FS/t/ClientAPI_SessionCache.t b/FS/t/ClientAPI_SessionCache.t new file mode 100644 index 000000000..4ba88e238 --- /dev/null +++ b/FS/t/ClientAPI_SessionCache.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::ClientAPI::SessionCache; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/clientapi_session.t b/FS/t/clientapi_session.t new file mode 100644 index 000000000..a6414c3d8 --- /dev/null +++ b/FS/t/clientapi_session.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::clientapi_session; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/clientapi_session_field.t b/FS/t/clientapi_session_field.t new file mode 100644 index 000000000..a9d4fa91a --- /dev/null +++ b/FS/t/clientapi_session_field.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::clientapi_session_field; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 8f11e2a03067829dc5f8cd6ae7fa0e3f249d61c1 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 3 Mar 2005 10:25:22 +0000 Subject: clean up some harmless but scary "Multiple records in scalar search" warnings w/history table searches --- FS/t/h_domain_record.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/h_domain_record.t (limited to 'FS/t') diff --git a/FS/t/h_domain_record.t b/FS/t/h_domain_record.t new file mode 100644 index 000000000..f48e72e9b --- /dev/null +++ b/FS/t/h_domain_record.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_domain_record; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From beba6672fb9c9c5769c81f8029bb88cd2bc910e9 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 25 Apr 2005 09:33:35 +0000 Subject: pick up freeside-sqlradius-radacctd again after all these years, now it just needs to update the "seconds" field(s), finally closes: Bug#1125 --- FS/t/Daemon.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/Daemon.t (limited to 'FS/t') diff --git a/FS/t/Daemon.t b/FS/t/Daemon.t new file mode 100644 index 000000000..24893fd94 --- /dev/null +++ b/FS/t/Daemon.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::Daemon; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From d4cbeeb08ebfb1803a82cc4284ad592fa9950de1 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 11 Jul 2005 10:58:32 +0000 Subject: s/ClientAPI::SessionCache/ClientAPI_SessionCache/ noticed by rjbs --- FS/t/ClientAPI_SessionCache.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FS/t') diff --git a/FS/t/ClientAPI_SessionCache.t b/FS/t/ClientAPI_SessionCache.t index 4ba88e238..605803eef 100644 --- a/FS/t/ClientAPI_SessionCache.t +++ b/FS/t/ClientAPI_SessionCache.t @@ -1,5 +1,5 @@ BEGIN { $| = 1; print "1..1\n" } END {print "not ok 1\n" unless $loaded;} -use FS::ClientAPI::SessionCache; +use FS::ClientAPI_SessionCache; $loaded=1; print "ok 1\n"; -- cgit v1.2.1 From 08662d58e7b9a13cf841e9c89daa39b28655724e Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 14 Jul 2005 10:52:46 +0000 Subject: move account search (httemplate/search/svc_acct.cgi) to new template, cust-fields configuration value to control which customer fields are shown on reports --- FS/t/cust_main_Mixin.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/cust_main_Mixin.t (limited to 'FS/t') diff --git a/FS/t/cust_main_Mixin.t b/FS/t/cust_main_Mixin.t new file mode 100644 index 000000000..c8b929117 --- /dev/null +++ b/FS/t/cust_main_Mixin.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_main_Mixin; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From 7555ad2262d45d5bf92d0ac958d6e92296eb00e0 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 9 Aug 2005 21:38:59 +0000 Subject: add native Radiator export --- FS/t/part_export-radiator.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 FS/t/part_export-radiator.t (limited to 'FS/t') diff --git a/FS/t/part_export-radiator.t b/FS/t/part_export-radiator.t new file mode 100644 index 000000000..546e9de30 --- /dev/null +++ b/FS/t/part_export-radiator.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_export::radiator; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1 From feef0e4c2b4bd6b776b25f5a1bd6fdbf63fd08b2 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 17 Aug 2005 22:23:46 +0000 Subject: infrastructure for easier schema changes, and: add payment_gateway, payment_gateway_option and agent_payment_gateway tables, add paystart_month, paystart_year, payissue and payip fields to cust_main, add preliminary gateway and gateway override editing to web UI, use payment gateway override when processing payments (card type, not taxclass yet) --- FS/t/option_Common.t | 5 +++++ FS/t/payment_gateway.t | 8 ++++++++ FS/t/payment_gateway_option.t | 8 ++++++++ 3 files changed, 21 insertions(+) create mode 100644 FS/t/option_Common.t create mode 100644 FS/t/payment_gateway.t create mode 100644 FS/t/payment_gateway_option.t (limited to 'FS/t') diff --git a/FS/t/option_Common.t b/FS/t/option_Common.t new file mode 100644 index 000000000..ad261415c --- /dev/null +++ b/FS/t/option_Common.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::option_Common; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/payment_gateway.t b/FS/t/payment_gateway.t new file mode 100644 index 000000000..b91d58244 --- /dev/null +++ b/FS/t/payment_gateway.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::payment_gateway; +$loaded=1; +print "ok 1 +"; diff --git a/FS/t/payment_gateway_option.t b/FS/t/payment_gateway_option.t new file mode 100644 index 000000000..e52b6b487 --- /dev/null +++ b/FS/t/payment_gateway_option.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::payment_gateway_option; +$loaded=1; +print "ok 1 +"; -- cgit v1.2.1 From 369cc8545df88dd4e717ccd8f6aa8719bc4308b3 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 27 Aug 2005 08:46:58 +0000 Subject: add banned credit card / ACH table, re-do cancel popup to have a checkbox to ban payinfo --- FS/t/banned_pay.t | 8 ++++++++ FS/t/cancel_reason.t | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 FS/t/banned_pay.t create mode 100644 FS/t/cancel_reason.t (limited to 'FS/t') diff --git a/FS/t/banned_pay.t b/FS/t/banned_pay.t new file mode 100644 index 000000000..d361c588d --- /dev/null +++ b/FS/t/banned_pay.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::banned_pay; +$loaded=1; +print "ok 1 +"; diff --git a/FS/t/cancel_reason.t b/FS/t/cancel_reason.t new file mode 100644 index 000000000..4cbda4a65 --- /dev/null +++ b/FS/t/cancel_reason.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::cancel_reason; +$loaded=1; +print "ok 1 +"; -- cgit v1.2.1 From cbcbbfe12075ea9cea726735e3ba77e68e8a0a76 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 14 Sep 2005 11:01:02 +0000 Subject: fix autogenerated simple test --- FS/t/agent_payment_gateway.t | 5 +++++ FS/t/banned_pay.t | 9 +++------ FS/t/cancel_reason.t | 9 +++------ FS/t/payment_gateway.t | 9 +++------ FS/t/payment_gateway_option.t | 9 +++------ 5 files changed, 17 insertions(+), 24 deletions(-) create mode 100644 FS/t/agent_payment_gateway.t (limited to 'FS/t') 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"; -- cgit v1.2.1