Example #1
0
 public function testGetVerbs()
 {
     $route = new Route('/', function () {
     });
     $this->assertEquals(['*'], $route->getVerbs());
     $this->assertEquals(['GET', 'HEAD'], $this->route->getVerbs());
     $this->assertEquals(['POST'], $this->routeClosure->getVerbs());
 }