summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/056.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/056.phpt')
-rw-r--r--ext/mysqli/tests/056.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/mysqli/tests/056.phpt b/ext/mysqli/tests/056.phpt
deleted file mode 100644
index cee7df1e5f..0000000000
--- a/ext/mysqli/tests/056.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-extend mysqli
---FILE--
-<?php
- include "connect.inc";
-
- class foobar extends mysqli {
- function test () {
- return ("I like MySQL 4.1");
- }
- }
-
- $foo = new foobar();
- $foo->connect("localhost", $user, $passwd);
- $foo->close();
- printf("%s\n", $foo->test());
-?>
---EXPECT--
-I like MySQL 4.1