mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-02 09:18:02 +01:00
fix test
This commit is contained in:
parent
884a0a5b72
commit
3e70f1ceb6
@ -9,13 +9,15 @@ echo "Test\n";
|
|||||||
include "_setup.inc";
|
include "_setup.inc";
|
||||||
|
|
||||||
$c = new pq\Connection(PQ_DSN);
|
$c = new pq\Connection(PQ_DSN);
|
||||||
var_dump($c->reset());
|
$c->reset();
|
||||||
var_dump($c->reset());
|
var_dump($c->status);
|
||||||
|
$c->reset();
|
||||||
|
var_dump($c->status);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
DONE
|
DONE
|
||||||
--EXPECT--
|
--EXPECT--
|
||||||
Test
|
Test
|
||||||
bool(true)
|
int(0)
|
||||||
bool(true)
|
int(0)
|
||||||
DONE
|
DONE
|
||||||
|
Loading…
Reference in New Issue
Block a user