public function YamlFileLoaderTest::testSupports

Same name in this branch

@covers Symfony\Component\DependencyInjection\Loader\YamlFileLoader::supports

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/YamlFileLoaderTest.php, line 172

Class

YamlFileLoaderTest

Namespace

Symfony\Component\DependencyInjection\Tests\Loader

Code

public function testSupports() {
  $loader = new YamlFileLoader(new ContainerBuilder(), new FileLocator());
  $this
    ->assertTrue($loader
    ->supports('foo.yml'), '->supports() returns true if the resource is loadable');
  $this
    ->assertFalse($loader
    ->supports('foo.foo'), '->supports() returns true if the resource is loadable');
}