public function UrlGeneratorTest::testRequiredVariableWithNoRealSeparator

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 360

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testRequiredVariableWithNoRealSeparator() {
  $routes = $this
    ->getRoutes('test', new Route('/get{what}Suffix'));
  $generator = $this
    ->getGenerator($routes);
  $this
    ->assertSame('/app.php/getSitesSuffix', $generator
    ->generate('test', array(
    'what' => 'Sites',
  )));
}