PopTest\Cache\SqliteTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $c = Cache::factory(new Sqlite(__DIR__ . '/../tmp/cache.sqlite'), 30);
        $c->adapter()->delete();
        $this->assertFalse(file_exists(__DIR__ . '/../tmp/cache.sqlite'));
    }