Commit 9503e130 authored by Alexander Butenko's avatar Alexander Butenko

Add one more test

parent c7709294
......@@ -217,6 +217,13 @@ if ($db->count != 2) {
exit;
}
$db->where("id = 1 or id = 2");
$res = $db->get ("users");
if ($db->count != 2) {
echo "Invalid users count on select with multiple params";
exit;
}
$db->delete("users");
$db->get("users");
if ($db->count != 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment