public function UrlGeneratorTest::testDefaultRequirementOfVariableDisallowsSlash in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testDefaultRequirementOfVariableDisallowsSlash()
@expectedException \Symfony\Component\Routing\Exception\InvalidParameterException
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 381
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testDefaultRequirementOfVariableDisallowsSlash() {
$routes = $this
->getRoutes('test', new Route('/{page}.{_format}'));
$this
->getGenerator($routes)
->generate('test', array(
'page' => 'index',
'_format' => 'sl/ash',
));
}