public function UrlGeneratorTest::testWithHostSameAsContextAndAbsolute

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

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