function BatchProcessingTestCase::testBatchLargePercentage

Test batches that return $context['finished'] > 1 do in fact complete. See http://drupal.org/node/600836

File

modules/simpletest/tests/batch.test, line 144

Class

BatchProcessingTestCase
Tests for the Batch API.

Code

function testBatchLargePercentage() {
    // Displaying the page triggers batch 5.
    $this->drupalGet('batch-test/large-percentage');
    $this->assertBatchMessages($this->_resultMessages(1), t('Batch for step 2 performed successfully.'));
    $this->assertEqual(batch_test_stack(), $this->_resultStack('batch_5'), t('Execution order was correct.'));
    $this->assertText('Redirection successful.', t('Redirection after batch execution is correct.'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.