You are here

function FusionApplyUIAdminTestCase::testSkinGroups in Fusion Accelerator 7

Same name and namespace in other branches
  1. 7.2 fusion_apply/tests/fusion_apply_ui.test \FusionApplyUIAdminTestCase::testSkinGroups()

Tests skin group functionality.

File

fusion_apply/tests/fusion_apply_ui.test, line 276
Tests for the Fusion Apply UI module.

Class

FusionApplyUIAdminTestCase
Tests administrative pages functionality.

Code

function testSkinGroups() {
  $this
    ->drupalGet('admin/appearance/fusion/skins');

  // Verify that the 'General' (default) group appears.
  $this
    ->assertText(t('General'));

  // Verify that the 'Typography' group appears, since fusion_apply_test module
  // registers a skin in that group.
  $this
    ->assertText(t('Typography'));
}