You are here

public function DumperTest::testSetIndentation in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Symfony/Component/Yaml/Tests/DumperTest.php \Symfony\Component\Yaml\Tests\DumperTest::testSetIndentation()
  2. 7.2 vendor/Symfony/Component/Yaml/Tests/DumperTest.php \Symfony\Component\Yaml\Tests\DumperTest::testSetIndentation()

File

vendor/Symfony/Component/Yaml/Tests/DumperTest.php, line 54

Class

DumperTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testSetIndentation() {
  $this->dumper
    ->setIndentation(7);
  $expected = <<<EOF
'': bar
foo: '#bar'
'foo''bar': {  }
bar:
       - 1
       - foo
foobar:
       foo: bar
       bar:
              - 1
              - foo
       foobar:
              foo: bar
              bar:
                     - 1
                     - foo

EOF;
  $this
    ->assertEquals($expected, $this->dumper
    ->dump($this->array, 4, 0));
}