null bind exports
authorivan <ivan>
Thu, 27 Jun 2002 09:23:05 +0000 (09:23 +0000)
committerivan <ivan>
Thu, 27 Jun 2002 09:23:05 +0000 (09:23 +0000)
FS/FS/part_export/bind.pm [new file with mode: 0644]
FS/FS/part_export/bind_slave.pm [new file with mode: 0644]
FS/t/part_export-bind.t [new file with mode: 0644]
FS/t/part_export-bind_slave.t [new file with mode: 0644]

diff --git a/FS/FS/part_export/bind.pm b/FS/FS/part_export/bind.pm
new file mode 100644 (file)
index 0000000..b72c9bd
--- /dev/null
@@ -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/FS/part_export/bind_slave.pm b/FS/FS/part_export/bind_slave.pm
new file mode 100644 (file)
index 0000000..ebb29c1
--- /dev/null
@@ -0,0 +1,7 @@
+package FS::part_export::bind_slave;
+
+use vars qw(@ISA);
+use FS::part_export::null;
+
+@ISA = qw(FS::part_export::null);
+
diff --git a/FS/t/part_export-bind.t b/FS/t/part_export-bind.t
new file mode 100644 (file)
index 0000000..d0c96be
--- /dev/null
@@ -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 (file)
index 0000000..c6a0386
--- /dev/null
@@ -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";