summaryrefslogtreecommitdiff
path: root/modules/image/tests
diff options
context:
space:
mode:
Diffstat (limited to 'modules/image/tests')
-rw-r--r--modules/image/tests/image_module_test.module28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/image/tests/image_module_test.module b/modules/image/tests/image_module_test.module
index 766a9d957..038bd155c 100644
--- a/modules/image/tests/image_module_test.module
+++ b/modules/image/tests/image_module_test.module
@@ -11,31 +11,3 @@ function image_module_test_file_download($uri) {
}
return -1;
}
-
-/**
- * Implements hook_image_effect_info().
- */
-function image_module_test_image_effect_info() {
- $effects = array(
- 'image_module_test_null' => array(
- 'effect callback' => 'image_module_test_null_effect',
- ),
- );
-
- return $effects;
-}
-
-/**
- * Image effect callback; Null.
- *
- * @param $image
- * An image object returned by image_load().
- * @param $data
- * An array with no attributes.
- *
- * @return
- * TRUE
- */
-function image_module_test_null_effect(array &$image, array $data) {
- return TRUE;
-}