1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
ext-pq/tests/reset001.phpt
Michael Wallner 33f82236a1 tests++
2013-01-21 17:44:37 +01:00

22 lines
253 B
PHP

--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