1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-03 09:48:02 +01:00
ext-pq/tests/reset001.phpt

22 lines
253 B
Plaintext
Raw Normal View History

2013-01-21 17:44:37 +01:00
--TEST--
connection reset
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
var_dump($c->reset());
var_dump($c->reset());
?>
DONE
--EXPECT--
Test
bool(true)
bool(true)
DONE