diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-03 18:16:23 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-03 18:16:23 +0000 |
commit | ec407ec945da8b7afee5c20f16cac6c041db1e25 (patch) | |
tree | 7fc94e0c97a2a7c3a69fd8527a2b939cf6bb70ef /modules/simpletest/tests/update_test_1.install | |
parent | 59c9219fb7b91a9d159709fd04e81969a610c8cd (diff) | |
download | brdo-ec407ec945da8b7afee5c20f16cac6c041db1e25.tar.gz brdo-ec407ec945da8b7afee5c20f16cac6c041db1e25.tar.bz2 |
#211182 by Damien Tournoud, David_Rothstein, clemens.tolboom, scor, hunmonk, et al: Allow updates to specify dependencies to ensure they run in a predictable order.
Diffstat (limited to 'modules/simpletest/tests/update_test_1.install')
-rw-r--r-- | modules/simpletest/tests/update_test_1.install | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/simpletest/tests/update_test_1.install b/modules/simpletest/tests/update_test_1.install new file mode 100644 index 000000000..96e8787b3 --- /dev/null +++ b/modules/simpletest/tests/update_test_1.install @@ -0,0 +1,25 @@ +<?php +// $Id$ + +/** + * @file + * Install, update and uninstall functions for the update_test_1 module. + */ + +/** + * Dummy update_test_1 update 7000. + */ +function update_test_1_update_7000() { +} + +/** + * Dummy update_test_1 update 7001. + */ +function update_test_1_update_7001() { +} + +/** + * Dummy update_test_1 update 7002. + */ +function update_test_1_update_7002() { +} |