Cache\Prefixed\Tests\PrefixedCachePoolTest::testDeleteItem PHP Method

testDeleteItem() public method

public testDeleteItem ( )
    public function testDeleteItem()
    {
        $prefix = 'ns';
        $key = 'key';
        $returnValue = true;
        $stub = $this->getHierarchyCacheStub();
        $stub->expects($this->once())->method('deleteItem')->with($prefix . $key)->willReturn($returnValue);
        $pool = new PrefixedCachePool($stub, $prefix);
        $this->assertEquals($returnValue, $pool->deleteItem($key));
    }