public function RedirectableUrlMatcherTest::testRedirectWhenNoSlash in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\RedirectableUrlMatcherTest::testRedirectWhenNoSlash()
File
- vendor/
symfony/ routing/ Tests/ Matcher/ RedirectableUrlMatcherTest.php, line 20
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function testRedirectWhenNoSlash() {
$coll = new RouteCollection();
$coll
->add('foo', new Route('/foo/'));
$matcher = $this
->getMockForAbstractClass('Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher', array(
$coll,
new RequestContext(),
));
$matcher
->expects($this
->once())
->method('redirect');
$matcher
->match('/foo');
}