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