assertEquals('HTTP Error', $headers[0]); $this->assertRegexp( '/failed to open stream: No such file or directory/', $content ); } /** * Get an invalid remote URL */ public function testGetInvalidRemoteUrl() { list($headers, $content) = get_http_url('http://non.existent', 1); $this->assertEquals('HTTP Error', $headers[0]); $this->assertRegexp( '/Name or service not known/', $content ); } }