public function FileDumperTest::testDumpBackupsFileIfExisting in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/Tests/Dumper/FileDumperTest.php \Symfony\Component\Translation\Tests\Dumper\FileDumperTest::testDumpBackupsFileIfExisting()
File
- vendor/
symfony/ translation/ Tests/ Dumper/ FileDumperTest.php, line 19
Class
Namespace
Symfony\Component\Translation\Tests\DumperCode
public function testDumpBackupsFileIfExisting() {
$tempDir = sys_get_temp_dir();
$file = $tempDir . '/messages.en.concrete';
$backupFile = $file . '~';
@touch($file);
$catalogue = new MessageCatalogue('en');
$catalogue
->add(array(
'foo' => 'bar',
));
$dumper = new ConcreteFileDumper();
$dumper
->dump($catalogue, array(
'path' => $tempDir,
));
$this
->assertTrue(file_exists($backupFile));
@unlink($file);
@unlink($backupFile);
}