public function KernelTest::testLocateResourceIgnoresDirOnNonResource in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/KernelTest.php \Symfony\Component\HttpKernel\Tests\KernelTest::testLocateResourceIgnoresDirOnNonResource()
File
- vendor/
symfony/ http-kernel/ Tests/ KernelTest.php, line 492
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function testLocateResourceIgnoresDirOnNonResource() {
$kernel = $this
->getKernel(array(
'getBundle',
));
$kernel
->expects($this
->once())
->method('getBundle')
->will($this
->returnValue(array(
$this
->getBundle(__DIR__ . '/Fixtures/Bundle1Bundle'),
)));
$this
->assertEquals(__DIR__ . '/Fixtures/Bundle1Bundle/foo.txt', $kernel
->locateResource('@Bundle1Bundle/foo.txt', __DIR__ . '/Fixtures'));
}