function ImageAdminUiTestCase::testEditEffectHelpText

Test if the help text is available on the edit effect form.

File

modules/image/image.test, line 547

Class

ImageAdminUiTestCase
Tests the administrative user interface.

Code

function testEditEffectHelpText() {
  // Create a random image style.
  $random_style = $this->createRandomStyle();
  // Add the crop effect to the image style.
  $edit = array();
  $edit['data[width]'] = 20;
  $edit['data[height]'] = 20;
  $this->drupalPost($random_style['path'] . '/add/image_crop', $edit, t('Add effect'));
  // Open the edit effect form and check for the help text.
  drupal_static_reset('image_styles');
  $style = image_style_load($random_style['name']);
  foreach ($style['effects'] as $ieid => $effect) {
    $this->drupalGet($random_style['path'] . '/effects/' . $ieid);
    $this->assertText(t('Cropping will remove portions of an image to make it the specified dimensions.'), 'The image style effect help text was displayed on the edit effect page.');
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.