public function UrlGeneratorTest::testWithHostSameAsContext

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testWithHostSameAsContext() {
  $routes = $this
    ->getRoutes('test', new Route('/{name}', array(), array(), array(), '{locale}.example.com'));
  $this
    ->assertEquals('/app.php/Fabien', $this
    ->getGenerator($routes, array(
    'host' => 'fr.example.com',
  ))
    ->generate('test', array(
    'name' => 'Fabien',
    'locale' => 'fr',
  )));
}