Ergo\Http\TransportTest::testIPV6Only PHP Method

testIPV6Only() public method

public testIPV6Only ( )
    public function testIPV6Only()
    {
        $request = new Request('GET', '/user/blargh');
        $family = Transport::IPFAMILY_IPV6;
        $transport = $this->transport();
        $transport->setIPFamily($family, $request);
        $method = $this->transportMethod("_curlConnection");
        $curl = $method->invoke($transport, $request);
    }