Client\RequestTest::testOPTIONS PHP Method

testOPTIONS() public method

public testOPTIONS ( )
    public function testOPTIONS()
    {
        $request = new Request('OPTIONS', 'http://local.example');
        $curl = $this->curlFormatter->format($request);
        $this->assertContains('-X OPTIONS', $curl);
    }