We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a7a01 commit 6704c7eCopy full SHA for 6704c7e
tests/Unit/QueueTest.php
@@ -45,6 +45,12 @@ public function provideConstructorInvalidArgumentData() : iterable
45
46
public function testGetName() : void
47
{
48
+ // temporary skip the test for the pecl connector until this PR is merged:
49
+ // https://github.com/tarantool/tarantool-php/pull/134
50
+ if (!class_exists(Client::class)) {
51
+ $this->markTestSkipped('The tarantool\client package is not installed.');
52
+ }
53
+
54
/** @var \Tarantool|Client|MockObject $client */
55
$client = class_exists(\Tarantool::class, false)
56
? $this->createMock(\Tarantool::class)
0 commit comments