diff options
author | jeff <jeff> | 2008-04-18 03:29:28 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-04-18 03:29:28 +0000 |
commit | d1d39ca153781e8c6f2640f9a694b2631bec3550 (patch) | |
tree | b756f8c457b3bfb0b9391db5f47bbdc9a66fb57d /FS | |
parent | f3547a0b913f2c982df13177240c6c5ba0b29231 (diff) |
drag address and router even farther into the century
Diffstat (limited to 'FS')
-rw-r--r-- | FS/MANIFEST | 6 | ||||
-rw-r--r-- | FS/t/addr_block.t | 5 | ||||
-rw-r--r-- | FS/t/router.t | 5 |
3 files changed, 16 insertions, 0 deletions
diff --git a/FS/MANIFEST b/FS/MANIFEST index 1098f9f5d..0c8db8877 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -166,6 +166,7 @@ FS/cust_tax_exempt.pm FS/cust_tax_exempt_pkg.pm FS/clientapi_session.pm FS/clientapi_session_field.pm +t/addr_block.t t/agent.t t/agent_type.t t/AccessRight.t @@ -285,6 +286,7 @@ t/rate_prefix.t t/radius_usergroup.t t/reg_code.t t/reg_code_pkg.t +t/router.t t/session.t t/svc_acct.t t/svc_acct_pop.t @@ -373,5 +375,9 @@ FS/cust_pkg_option.pm t/cust_pkg_option.t FS/cust_pay_pending.pm t/cust_pay_pending.t +FS/report.pm +t/report.t +FS/report_option.pm +t/report_option.t FS/part_pkg_taxclass.pm t/part_pkg_taxclass.t diff --git a/FS/t/addr_block.t b/FS/t/addr_block.t new file mode 100644 index 000000000..4f49a4416 --- /dev/null +++ b/FS/t/addr_block.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::addr_block; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/router.t b/FS/t/router.t new file mode 100644 index 000000000..fe171b3dc --- /dev/null +++ b/FS/t/router.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::router; +$loaded=1; +print "ok 1\n"; |