diff options
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/h_Common.t | 5 | ||||
-rw-r--r-- | FS/t/h_cust_svc.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_acct.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_broadband.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_domain.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_external.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_forward.t | 5 | ||||
-rw-r--r-- | FS/t/h_svc_www.t | 5 |
8 files changed, 40 insertions, 0 deletions
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"; |