public function YamlFileLoaderTest::testLoadDoesNothingIfEmpty in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
- 8.0 vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
File
- vendor/
symfony/ routing/ Tests/ Loader/ YamlFileLoaderTest.php, line 33
Class
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function testLoadDoesNothingIfEmpty() {
$loader = new YamlFileLoader(new FileLocator(array(
__DIR__ . '/../Fixtures',
)));
$collection = $loader
->load('empty.yml');
$this
->assertEquals(array(), $collection
->all());
$this
->assertEquals(array(
new FileResource(realpath(__DIR__ . '/../Fixtures/empty.yml')),
), $collection
->getResources());
}