You are here

protected function DeployWebTestCase::cronRun in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 deploy.test \DeployWebTestCase::cronRun()

Overridden method adjusted to work with this testing framework.

Overrides DrupalWebTestCase::cronRun

1 call to DeployWebTestCase::cronRun()
DeployWebTestCase::deployPlan in ./deploy.test
Deploy the plan.

File

./deploy.test, line 168
Deployment tests.

Class

DeployWebTestCase
Helper class.

Code

protected function cronRun() {

  // The "regular" way of running cron in SimpleTest doesn't work for us,
  // since we have a very complex setup with a several "virtual" SimpleTest
  // sites. This is an easier way of running cron. It doesn't cover as many
  // test cases, but it's good enough.
  drupal_cron_run();
}