You are here

function FieldsetHelperTestCase::testFieldsetHelperAdminModulesSettingsToggleAll in Fieldset helper 6

Test toggle all added to the admin modules pages (admin/build/modules).

File

./fieldset_helper.test, line 112

Class

FieldsetHelperTestCase

Code

function testFieldsetHelperAdminModulesSettingsToggleAll() {
  $this
    ->drupalGet('admin/build/modules');
  $this
    ->assertRaw('class="fieldset-helper-toggle-all"', t('Find toggle all DOM class.'));
  $this
    ->assertRaw('id="system-modules-toggle-all"', t('Find toggle all DOM id.'));
}