Ejemplo n.º 1
0
 public function testHttpMethodsCanBePassedInWithTemplatesAndBeSeparatedByMultipleSpaces()
 {
     $this->rule->setTemplate('GET                  /users');
     $info = $this->rule->getInformation();
     $this->assertTrue(isset($info['method']));
     $this->assertEquals('GET', $info['method']);
 }