Jamm\Memory\Tests\TestRedisServer::test_BLPop PHP Method

test_BLPop() public method

public test_BLPop ( )
    public function test_BLPop()
    {
        $this->assertEquals('blpop key1 50', $this->redis->BLPop('key1', 50));
        $this->assertEquals('blpop key1 key2 50', $this->redis->BLPop('key1', 'key2', 50));
        $this->assertEquals('blpop key1 key2 key3 50', $this->redis->BLPop(array('key1', 'key2', 'key3'), 50));
    }
TestRedisServer