PopTest\Curl\CurlTest::testCurl PHP Method

testCurl() public method

public testCurl ( )
    public function testCurl()
    {
        $c = new Curl('http://www.popphp.org/version', array(CURLOPT_HEADER => false, CURLOPT_RETURNTRANSFER => true));
        $result = trim($c->execute());
        unset($c);
        $this->assertEquals('1.7.0', $result);
    }