summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/entity_cache_test_dependency.module
blob: 73a11495f58f95d1248cbdad2f57661f03ee4055 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * @file
 * Helper module for entity cache tests.
 */

/**
 * Implements hook_entity_info().
 */
function entity_cache_test_dependency_entity_info() {
  return array(
    'entity_cache_test' => array(
      'label' => 'Entity Cache Test',
    ),
  );
}