summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorcvs2git <cvs2git>2003-03-20 03:41:04 +0000
committercvs2git <cvs2git>2003-03-20 03:41:04 +0000
commit9ba9f5252cceb2385c914127062e1ca3954b6d60 (patch)
treeae836e9e77e20d9421f6713e5b363b0bfc723605 /FS
parent31dabd9708065a2ae24880b2fe27e997b81878b6 (diff)
parent9aec22e5fd00800c6e7952ae5b85cc639d4b1e78 (diff)
This commit was manufactured by cvs2svn to create branch
'FREESIDE_1_4_BRANCH'.
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_export/apache.pm7
-rw-r--r--FS/t/part_export-apache.t5
2 files changed, 12 insertions, 0 deletions
diff --git a/FS/FS/part_export/apache.pm b/FS/FS/part_export/apache.pm
new file mode 100644
index 000000000..b72c9bdb0
--- /dev/null
+++ b/FS/FS/part_export/apache.pm
@@ -0,0 +1,7 @@
+package FS::part_export::bind;
+
+use vars qw(@ISA);
+use FS::part_export::null;
+
+@ISA = qw(FS::part_export::null);
+
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";