summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/entity_cache_test_dependency.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-18 15:01:56 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-18 15:01:56 +0000
commitf62d41af34e7766176d1c4e18deadfdc369c6ddf (patch)
treeaa050353c7bd538a27009165871dac00eebd9d4e /modules/simpletest/tests/entity_cache_test_dependency.module
parent7e5787d9481d446356b1878f9b64a276e036ded2 (diff)
downloadbrdo-f62d41af34e7766176d1c4e18deadfdc369c6ddf.tar.gz
brdo-f62d41af34e7766176d1c4e18deadfdc369c6ddf.tar.bz2
#742972 by klausi, Berdir: Clear entity info cache during module enable. (tests)
Diffstat (limited to 'modules/simpletest/tests/entity_cache_test_dependency.module')
-rw-r--r--modules/simpletest/tests/entity_cache_test_dependency.module19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/simpletest/tests/entity_cache_test_dependency.module b/modules/simpletest/tests/entity_cache_test_dependency.module
new file mode 100644
index 000000000..19d51cc36
--- /dev/null
+++ b/modules/simpletest/tests/entity_cache_test_dependency.module
@@ -0,0 +1,19 @@
+<?php
+// $Id$
+
+/**
+ * @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',
+ 'base table' => 'entity_cache_test',
+ ),
+ );
+}