Sokil\Mongo\CacheTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $this->cache->set('php', 'PHP: Hypertext Processor', 1);
        $this->assertEquals('PHP: Hypertext Processor', $this->cache->get('php'));
        $this->cache->delete('php');
        $this->assertEmpty($this->cache->get('php'));
    }