Bug #21415 ยป 12422_TYPO3_trunk.patch
tests/t3lib/cache/backend/t3lib_cache_backend_filebackendtestcase.php (working copy) | ||
---|---|---|
*/
|
||
public function getCacheDirectoryReturnsThePreviouslySetDirectory() {
|
||
$directory = $this->testingCacheDirectory;
|
||
$fullPathToDirectory = t3lib_div::getIndpEnv('TYPO3_DOCUMENT_ROOT') . '/' . $directory;
|
||
$fullPathToDirectory = PATH_site . $directory;
|
||
$this->backend->setCacheDirectory($directory);
|
||
$this->assertEquals($fullPathToDirectory, $this->backend->getCacheDirectory(), 'getDirectory() did not return the expected value.');
|