public function UrlGeneratorTest::testSchemeRequirementDoesNothingIfSameCurrentScheme

File

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

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

public function testSchemeRequirementDoesNothingIfSameCurrentScheme() {
  $routes = $this
    ->getRoutes('test', new Route('/', array(), array(
    '_scheme' => 'http',
  )));
  $this
    ->assertEquals('/app.php/', $this
    ->getGenerator($routes)
    ->generate('test'));
  $routes = $this
    ->getRoutes('test', new Route('/', array(), array(
    '_scheme' => 'https',
  )));
  $this
    ->assertEquals('/app.php/', $this
    ->getGenerator($routes, array(
    'scheme' => 'https',
  ))
    ->generate('test'));
}