Skip to content

Commit

Permalink
[gearman] Run all tests as func, because it's hard to install php gea…
Browse files Browse the repository at this point in the history
…rman ext on travis.
  • Loading branch information
makasim committed Jun 27, 2017
1 parent cee3f7d commit c74f774
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tests/GearmanConnectionFactoryConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

/**
* The class contains the factory tests dedicated to configuration.
*
* @group functional
*/
class GearmanConnectionFactoryConfigTest extends TestCase
{
Expand Down
3 changes: 3 additions & 0 deletions Tests/GearmanContextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;

/**
* @group functional
*/
class GearmanContextTest extends TestCase
{
use ClassExtensionTrait;
Expand Down
3 changes: 3 additions & 0 deletions Tests/GearmanDestinationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;

/**
* @group functional
*/
class GearmanDestinationTest extends TestCase
{
use ClassExtensionTrait;
Expand Down
3 changes: 3 additions & 0 deletions Tests/GearmanMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;

/**
* @group functional
*/
class GearmanMessageTest extends TestCase
{
use ClassExtensionTrait;
Expand Down
3 changes: 3 additions & 0 deletions Tests/GearmanProducerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;

/**
* @group functional
*/
class GearmanProducerTest extends TestCase
{
use ClassExtensionTrait;
Expand Down
3 changes: 3 additions & 0 deletions Tests/Spec/GearmanConnectionFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Enqueue\Gearman\GearmanConnectionFactory;
use Enqueue\Psr\Spec\PsrConnectionFactorySpec;

/**
* @group functional
*/
class GearmanConnectionFactoryTest extends PsrConnectionFactorySpec
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Tests/Spec/GearmanMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Enqueue\Gearman\GearmanMessage;
use Enqueue\Psr\Spec\PsrMessageSpec;

/**
* @group functional
*/
class GearmanMessageTest extends PsrMessageSpec
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Tests/Spec/GearmanQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Enqueue\Gearman\GearmanDestination;
use Enqueue\Psr\Spec\PsrQueueSpec;

/**
* @group functional
*/
class GearmanQueueTest extends PsrQueueSpec
{
/**
Expand Down
3 changes: 3 additions & 0 deletions Tests/Spec/GearmanTopicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use Enqueue\Gearman\GearmanDestination;
use Enqueue\Psr\Spec\PsrTopicSpec;

/**
* @group functional
*/
class GearmanTopicTest extends PsrTopicSpec
{
/**
Expand Down

0 comments on commit c74f774

Please sign in to comment.