コード例 #1
0
ファイル: RouteTest.php プロジェクト: ezimuel/zend-expressive
 public function testRouteAlwaysAllowsOptionsMethod()
 {
     $route = new Route('/foo', $this->noopMiddleware, []);
     $this->assertTrue($route->allowsMethod('OPTIONS'));
 }