public static function BlockAttributesContextTestCase::getInfo in Block Attributes 7
Implements DrupalWebTestCase::getInfo().
Overrides BlockAttributesUpdateDisplayTestCase::getInfo
File
- ./
block_attributes.test, line 309 - Test the Block Attributes module.
Class
- BlockAttributesContextTestCase
- Test Block Attributes integration with Context.
Code
public static function getInfo() {
return array(
'name' => 'Integration with Context',
'description' => 'Test the integration of Block Attributes with the Context module and the update/display of a Block HTML attributes.',
// Include required contributed modules context and ctools for the test.
'dependencies' => array(
'context',
'ctools',
),
'group' => 'Block Attributes',
);
}