[Config] Do not skip YamlReferenceDumperTest entirely

This commit is contained in:
Maxime STEINHAUSSER 2016-12-08 11:59:24 +01:00
parent c360a222ef
commit 1ed9335e88
1 changed files with 2 additions and 6 deletions

View File

@ -22,8 +22,8 @@ class YamlReferenceDumperTest extends \PHPUnit_Framework_TestCase
$dumper = new YamlReferenceDumper();
$this->assertContains($this->getConfigurationAsString(), $dumper->dump($configuration));
$this->markTestIncomplete('The Yaml Dumper currently does not support prototyped arrays');
$this->assertEquals($this->getConfigurationAsString(), $dumper->dump($configuration));
}
private function getConfigurationAsString()
@ -32,7 +32,7 @@ class YamlReferenceDumperTest extends \PHPUnit_Framework_TestCase
acme_root:
boolean: true
scalar_empty: ~
scalar_null: ~
scalar_null: null
scalar_true: true
scalar_false: false
scalar_default: default
@ -59,10 +59,6 @@ acme_root:
# Prototype
name: ~
connections:
# Prototype
- { user: ~, pass: ~ }
EOL;
}
}