summaryrefslogtreecommitdiff
path: root/pear/tests/PEAR.t
diff options
context:
space:
mode:
Diffstat (limited to 'pear/tests/PEAR.t')
-rw-r--r--pear/tests/PEAR.t16
1 files changed, 0 insertions, 16 deletions
diff --git a/pear/tests/PEAR.t b/pear/tests/PEAR.t
deleted file mode 100644
index 6c8346adc7..0000000000
--- a/pear/tests/PEAR.t
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php // -*- C++ -*-
-
-require_once "PEAR.php";
-
-class __TestPEAR1 extends PEAR {
- function __TestPEAR1() {
- $this->_debug = true;
- $this->PEAR();
- }
-}
-
-print "test class __TestPEAR1\n";
-$o = new __TestPEAR1;
-var_dump(get_class($o));
-
-?>