1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37:
<?php
namespace Guzzle\Tests\Batch;
use Guzzle\Batch\BatchClosureDivisor;
class BatchClosureDivisorTest extends \Guzzle\Tests\GuzzleTestCase
{
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);
}
}