You are here

function ImageAttachTestCase::testSettings in Image 6

Verify that the module's settings appear in the correct places.

File

contrib/image_attach/tests/image_attach.test, line 42

Class

ImageAttachTestCase
Test image functionality.

Code

function testSettings() {
  $this
    ->drupalGet('admin/content/node-type/story');
  $this
    ->assertText(t('Image Attach settings'), t('Image attach settings displayed on the story type settings page.'));
  $this
    ->drupalGet('admin/content/node-type/image');
  $this
    ->assertNoText(t('Image Attach settings'), t('Image attach settings are not available on the image type settings page.'));
}