Skip to content

Commit

Permalink
Temporary skip the test for the pecl connector until this PR is merged:
Browse files Browse the repository at this point in the history
  • Loading branch information
rybakit committed Oct 23, 2018
1 parent 49a7a01 commit 6704c7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/Unit/QueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ public function provideConstructorInvalidArgumentData() : iterable

public function testGetName() : void
{
// temporary skip the test for the pecl connector until this PR is merged:
// https://github.com/tarantool/tarantool-php/pull/134
if (!class_exists(Client::class)) {
$this->markTestSkipped('The tarantool\client package is not installed.');
}

/** @var \Tarantool|Client|MockObject $client */
$client = class_exists(\Tarantool::class, false)
? $this->createMock(\Tarantool::class)
Expand Down

0 comments on commit 6704c7e

Please sign in to comment.