public function DrupalCacheAdapterTest::testDeleteSuccess in Flysystem 8
Same name and namespace in other branches
- 3.x tests/src/Unit/Flysystem/Adapter/DrupalCacheAdapterTest.php \Drupal\Tests\flysystem\Unit\Flysystem\Adapter\DrupalCacheAdapterTest::testDeleteSuccess()
- 2.0.x tests/src/Unit/Flysystem/Adapter/DrupalCacheAdapterTest.php \Drupal\Tests\flysystem\Unit\Flysystem\Adapter\DrupalCacheAdapterTest::testDeleteSuccess()
- 3.0.x tests/src/Unit/Flysystem/Adapter/DrupalCacheAdapterTest.php \Drupal\Tests\flysystem\Unit\Flysystem\Adapter\DrupalCacheAdapterTest::testDeleteSuccess()
File
- tests/
src/ Unit/ Flysystem/ Adapter/ DrupalCacheAdapterTest.php, line 155
Class
- DrupalCacheAdapterTest
- Test the Drupal Cache Adapter.
Namespace
Drupal\Tests\flysystem\Unit\Flysystem\AdapterCode
public function testDeleteSuccess() {
$config = new Config();
$this->adapter
->write(static::FILE, 'contents', $config)
->willReturn([
'size' => 1234,
]);
$this->cacheAdapter
->write(static::FILE, 'contents', $config);
$this->adapter
->delete(static::FILE)
->willReturn(TRUE);
$this
->assertTrue($this->cacheAdapter
->delete(static::FILE));
$this
->assertFalse($this->cacheItemBackend
->has(static::FILE));
}