File size: 867B
<?php
namespace Guzzle\Tests\Batch;
use Guzzle\Batch\BatchClosureDivisor;
/**
* @covers Guzzle\Batch\BatchClosureDivisor
*/
class BatchClosureDivisorTest extends \Guzzle\Tests\GuzzleTestCase
{
/**
* @expectedException Guzzle\Common\Exception\InvalidArgumentException
*/
public function testEnsuresCallableIsCallable()
{
$d = new BatchClosureDivisor(new \stdClass());
}
public function testDividesBatch()
{
$queue = new \SplQueue();
$queue[] = 'foo';
$queue[] = 'baz';
$d = new BatchClosureDivisor(function (\SplQueue $queue, $context) {
return array(
array('foo'),
array('baz')
);
}, 'Bar!');
$batches = $d->createBatches($queue);
$this->assertEquals(array(array('foo'), array('baz')), $batches);
}
}