summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/9999dropdb.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/9999dropdb.phpt')
-rw-r--r--ext/pgsql/tests/9999dropdb.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/pgsql/tests/9999dropdb.phpt b/ext/pgsql/tests/9999dropdb.phpt
deleted file mode 100644
index c60eeda8d6..0000000000
--- a/ext/pgsql/tests/9999dropdb.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-PostgreSQL drop db
---SKIPIF--
-<?php include("skipif.inc"); ?>
---FILE--
-<?php
-// drop test table
-
-include('config.inc');
-
-$db = pg_connect($conn_str);
-pg_query($db, "DROP TABLE ".$table_name);
-
-echo "OK";
-
-?>
---EXPECT--
-OK