public static function BlockAttributesFeaturesTestCase::getInfo in Block Attributes 7
Implements DrupalWebTestCase::getInfo().
File
- ./block_attributes.test, line 382 
- Test the Block Attributes module.
Class
- BlockAttributesFeaturesTestCase
- Test Block Attributes integration with Features through FE Block.
Code
public static function getInfo() {
  return array(
    'name' => 'Integration with Features',
    'description' => 'Test the integration of Block Attributes with Features through the FE Block module and the update/display of Block HTML Attributes.',
    // Include Features related modules required for this Test Case.
    'dependencies' => array(
      'features',
      'ctools',
      'fe_block',
    ),
    'group' => 'Block Attributes',
  );
}