You are here

public static function BlockAttributesMenuBlockTestCase::getInfo in Block Attributes 7

Implements DrupalWebTestCase::getInfo().

File

./block_attributes.test, line 479
Test the Block Attributes module.

Class

BlockAttributesMenuBlockTestCase
Test Block Attributes integration with Menu Block.

Code

public static function getInfo() {
  return array(
    'name' => 'Integration with Menu Block',
    'description' => 'Test the integration of Block Attributes with the Menu Block module and the update/display of a Menu Block\'s HTML attributes.',
    // We could use Menu Block's API to import a block from code. But part of
    // this test is about the creation process of a Menu Block.
    'dependencies' => array(
      'menu_block',
    ),
    'group' => 'Block Attributes',
  );
}