File
- drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/UrlMatcherTest.php, line 256
Class
- UrlMatcherTest
Namespace
Symfony\Component\Routing\Tests\Matcher
Code
public function testOptionalVariableWithNoRealSeparator() {
$coll = new RouteCollection();
$coll
->add('test', new Route('/get{what}', array(
'what' => 'All',
)));
$matcher = new UrlMatcher($coll, new RequestContext());
$this
->assertEquals(array(
'what' => 'All',
'_route' => 'test',
), $matcher
->match('/get'));
$this
->assertEquals(array(
'what' => 'Sites',
'_route' => 'test',
), $matcher
->match('/getSites'));
$this
->setExpectedException('Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException');
$matcher
->match('/ge');
}