You are here

public function FileDumperTest::testDumpBackupsFileIfExisting in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

FileDumperTest

Namespace

Symfony\Component\Translation\Tests\Dumper

Code

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);
}