You are here

public function YamlFileDumperTest::testLinearDump in Plug 7

File

lib/Symfony/translation/Tests/Dumper/YamlFileDumperTest.php, line 37

Class

YamlFileDumperTest

Namespace

Symfony\Component\Translation\Tests\Dumper

Code

public function testLinearDump() {
  $catalogue = new MessageCatalogue('en');
  $catalogue
    ->add(array(
    'foo.bar1' => 'value1',
    'foo.bar2' => 'value2',
  ));
  $tempDir = sys_get_temp_dir();
  $dumper = new YamlFileDumper();
  $dumper
    ->dump($catalogue, array(
    'path' => $tempDir,
  ));
  $this
    ->assertEquals(file_get_contents(__DIR__ . '/../fixtures/messages_linear.yml'), file_get_contents($tempDir . '/messages.en.yml'));
  unlink($tempDir . '/messages.en.yml');
}