YamlFileDumperTest.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Tests\Dumper;
  11. use Symfony\Component\Translation\MessageCatalogue;
  12. use Symfony\Component\Translation\Dumper\YamlFileDumper;
  13. class YamlFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. protected function setUp()
  16. {
  17. if (!class_exists('Symfony\Component\Yaml\Yaml')) {
  18. $this->markTestSkipped('The "Yaml" component is not available');
  19. }
  20. }
  21. public function testDump()
  22. {
  23. $catalogue = new MessageCatalogue('en');
  24. $catalogue->add(array('foo' => 'bar'));
  25. $tempDir = sys_get_temp_dir();
  26. $dumper = new YamlFileDumper();
  27. $dumper->dump($catalogue, array('path' => $tempDir));
  28. $this->assertEquals(file_get_contents(__DIR__.'/../fixtures/resources.yml'), file_get_contents($tempDir.'/messages.en.yml'));
  29. unlink($tempDir.'/messages.en.yml');
  30. }
  31. }