We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ab085 commit 068aca1Copy full SHA for 068aca1
tests/TestRedis.php
@@ -1505,8 +1505,20 @@ public function testHashes() {
1505
1506
$this->redis->hSet('h', 'y', 'not-a-number');
1507
$this->assertTrue(1 === $this->redis->hIncrBy('h', 'y', 1));
1508
+ }
1509
+
1510
+ public function testMultiExec() {
1511
+ $this->testSequence(Redis::MULTI);
1512
1513
1514
+ public function testPipeline() {
1515
+ $this->testSequence(Redis::PIPELINE);
1516
}
1517
1518
+ private function testSequence($mode) {
1519
1520
1521
1522
1523
1524
?>
0 commit comments