Fixed tests
This commit is contained in:
parent
f39fa98f4d
commit
d0b4f46aec
|
|
@ -138,6 +138,10 @@ class AsyncRedisQueueTest extends TestCase
|
||||||
|
|
||||||
public function test_clear_job()
|
public function test_clear_job()
|
||||||
{
|
{
|
||||||
|
if (! method_exists($this->queue, 'clear')) {
|
||||||
|
$this->markTestSkipped('The Queue has no clear() method to test.');
|
||||||
|
}
|
||||||
|
|
||||||
$job1 = new RedisQueueIntegrationTestJob(30);
|
$job1 = new RedisQueueIntegrationTestJob(30);
|
||||||
$job2 = new RedisQueueIntegrationTestJob(40);
|
$job2 = new RedisQueueIntegrationTestJob(40);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue