You are here

protected function UbercartTestHelper::cronRun in Ubercart 6.2

Runs cron in the Drupal installed by Simpletest.

Overrides DrupalWebTestCase::cronRun

1 call to UbercartTestHelper::cronRun()
UbercartRolesTestCase::testRolePurchaseCheckout in uc_roles/uc_roles.test

File

uc_store/uc_store.test, line 185
Test functionality provided by uc_store.

Class

UbercartTestHelper
Defines a base helper class for Ubercart tests.

Code

protected function cronRun() {
  $this
    ->drupalGet($GLOBALS['base_url'] . '/cron.php', array(
    'external' => TRUE,
  ));
}