Example #1
0
 public function testValidIndexWithSlash()
 {
     $this->assertEquals(true, $this->subRouteWithSlash->isValid($this->createRequest('GET', '/george')));
     $this->assertEquals(true, $this->subRouteWithSlash->isValid($this->createRequest('GET', '/george/')));
     $this->assertEquals(true, $this->subRouteWithSlash->isValid($this->createRequest('POST', '/george')));
     $this->assertEquals(true, $this->subRouteWithSlash->isValid($this->createRequest('POST', '/george/')));
 }