You are here

public function UrlMatcherTest::testHeadAllowedWhenRequirementContainsGet 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::testHeadAllowedWhenRequirementContainsGet()

File

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

Class

UrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function testHeadAllowedWhenRequirementContainsGet() {
  $coll = new RouteCollection();
  $coll
    ->add('foo', new Route('/foo', array(), array(), array(), '', array(), array(
    'get',
  )));
  $matcher = new UrlMatcher($coll, new RequestContext('', 'head'));
  $this
    ->assertInternalType('array', $matcher
    ->match('/foo'));
}