summaryrefslogtreecommitdiff
path: root/modules/system/tests/system_cron_test.module
blob: 9ef80e23134ff473140eaa01005cd7bf96db6e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * @file
 * Helper module for CronRunTestCase::testCronCacheExpiration().
 */

/**
 * Implements hook_flush_caches().
 */
function system_cron_test_flush_caches() {
  // Set a variable to indicate that this hook was invoked.
  variable_set('system_cron_test_flush_caches', 1);
  return array();
}