You are here

public static function BlockClassFeaturesTestCase::getInfo in Block Class 7.2

Implements DrupalWebTestCase::getInfo().

File

./block_class.test, line 271
Test the Block Class module.

Class

BlockClassFeaturesTestCase
Test Block Class integration with Features through FE Block.

Code

public static function getInfo() {
  return array(
    'name' => 'Integration with Features',
    'description' => 'Test the integration of Block Class with Features through the FE Block module and the update/display of a Block CSS class.',
    // Include Features related modules required for this Test Case.
    'dependencies' => array(
      'features',
      'ctools',
      'fe_block',
    ),
    'group' => 'Block Class',
  );
}