Scalr\Tests\Api\Rest\ApplicationTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $route = $this->app->delete('/path', function () {
            /* do nothing */
        });
        $this->assertEquals([Request::METHOD_DELETE], $route->getMethods());
    }