summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/password_old.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/password_old.phpt')
-rw-r--r--ext/oci8/tests/password_old.phpt30
1 files changed, 0 insertions, 30 deletions
diff --git a/ext/oci8/tests/password_old.phpt b/ext/oci8/tests/password_old.phpt
deleted file mode 100644
index d293fce870..0000000000
--- a/ext/oci8/tests/password_old.phpt
+++ /dev/null
@@ -1,30 +0,0 @@
---TEST--
-ocipasswordchange()
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-
-$new_password = "test";
-var_dump(ocipasswordchange($c, $user, $password, $new_password));
-
-if (!empty($dbase)) {
- var_dump($new_c = ocilogon($user,$new_password,$dbase));
-}
-else {
- var_dump($new_c = ocilogon($user,$new_password));
-}
-
-var_dump(ocipasswordchange($new_c, $user, $new_password, $password));
-
-
-echo "Done\n";
-
-?>
---EXPECTF--
-bool(true)
-resource(%d) of type (oci8 connection)
-bool(true)
-Done