Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit eb6aaf1

Browse files
committed
CurlHandler is only testable with PHP >= 5.5
1 parent 60668b6 commit eb6aaf1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/Guzzle5CurlHttpAdapterTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@
1818
*/
1919
class Guzzle5CurlHttpAdapterTest extends Guzzle5HttpAdapterTest
2020
{
21+
/**
22+
* {@inheritdoc}
23+
*/
24+
protected function setUp()
25+
{
26+
if (PHP_VERSION_ID < 50500) {
27+
$this->markTestSkipped();
28+
}
29+
30+
parent::setUp();
31+
}
32+
2133
/**
2234
* {@inheritdoc}
2335
*/

0 commit comments

Comments
 (0)