function image_test_image_toolkits in SimpleTest 7
Implement hook_image_toolkits().
File
- tests/
image_test.module, line 11 - Helper module for the image tests.
Code
function image_test_image_toolkits() {
return array(
'test' => array(
'title' => t('A dummy toolkit that works'),
'available' => TRUE,
),
'broken' => array(
'title' => t('A dummy toolkit that is "broken"'),
'available' => FALSE,
),
);
}