Neos\Cache\Tests\Unit\Backend\RedisBackendTest::hasInvokesRedis PHP Method

hasInvokesRedis() public method

public hasInvokesRedis ( )
    public function hasInvokesRedis()
    {
        $this->redis->expects($this->once())->method('exists')->with('Foo_Cache:entry:foo')->will($this->returnValue(true));
        $this->assertEquals(true, $this->backend->has('foo'));
    }