summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-03-24 12:31:37 +0000
committerMarcus Boerger <helly@php.net>2005-03-24 12:31:37 +0000
commit2906d6570cd816f2edfd949e280c162f2f1e033f (patch)
tree67ae0aad11eaf34528693aa6f5d9af9ba879229e /ext/pdo_sqlite
parent0a65a3d50547b7c3948ccc34199f8b3e181e1a63 (diff)
downloadphp-git-2906d6570cd816f2edfd949e280c162f2f1e033f.tar.gz
- Add new test
Diffstat (limited to 'ext/pdo_sqlite')
-rwxr-xr-xext/pdo_sqlite/tests/pdo_024.phpt21
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/pdo_sqlite/tests/pdo_024.phpt b/ext/pdo_sqlite/tests/pdo_024.phpt
new file mode 100755
index 0000000000..15530419d7
--- /dev/null
+++ b/ext/pdo_sqlite/tests/pdo_024.phpt
@@ -0,0 +1,21 @@
+--TEST--
+PDO_SQLite: Bind does not convert NULL
+--SKIPIF--
+<?php # vim:ft=php
+require_once('skipif.inc'); ?>
+--FILE--
+<?php
+
+require_once('connection.inc');
+require_once('prepare.inc');
+
+require_once($PDO_TESTS . 'pdo_024.inc');
+
+?>
+===DONE===
+<?php exit(0); ?>
+--EXPECTF--
+bind: success
+bool(true)
+NULL
+===DONE===