You are here

public function UrlMatcherTest::testDefaultRequirementOfVariableDisallowsSlash in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testDefaultRequirementOfVariableDisallowsSlash()

@expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException

File

vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php, line 294

Class

UrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function testDefaultRequirementOfVariableDisallowsSlash() {
  $coll = new RouteCollection();
  $coll
    ->add('test', new Route('/{page}.{_format}'));
  $matcher = new UrlMatcher($coll, new RequestContext());
  $matcher
    ->match('/index.sl/ash');
}