function BatchProcessingTestCase::testBatchNoForm
Test batches triggered outside of form submission.
File
-
modules/
simpletest/ tests/ batch.test, line 27
Class
- BatchProcessingTestCase
- Tests for the Batch API.
Code
function testBatchNoForm() {
// Displaying the page triggers batch 1.
$this->drupalGet('batch-test/no-form');
$this->assertBatchMessages($this->_resultMessages(1), t('Batch for step 2 performed successfully.'));
$this->assertEqual(batch_test_stack(), $this->_resultStack('batch_1'), 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.