public function UrlMatcherTest::testDecodeOnce in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testDecodeOnce()
File
- vendor/
symfony/ routing/ Tests/ Matcher/ UrlMatcherTest.php, line 339
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function testDecodeOnce() {
$coll = new RouteCollection();
$coll
->add('foo', new Route('/foo/{foo}'));
$matcher = new UrlMatcher($coll, new RequestContext());
$this
->assertEquals(array(
'foo' => 'bar%23',
'_route' => 'foo',
), $matcher
->match('/foo/bar%2523'));
}