public static function BlockClassContextTestCase::getInfo in Block Class 7.2
Same name and namespace in other branches
- 7 block_class.test \BlockClassContextTestCase::getInfo()
Implements DrupalWebTestCase::getInfo().
Overrides BlockClassUpdateDisplayTestCase::getInfo
File
- ./
block_class.test, line 198 - Test the Block Class module.
Class
- BlockClassContextTestCase
- Test Block Class integration with Context.
Code
public static function getInfo() {
return array(
'name' => 'Integration with Context',
'description' => 'Test the integration of Block Class with the Context module and the update/display of a Block CSS class.',
// Include required contributed modules context and ctools for the test.
'dependencies' => array(
'context',
'ctools',
),
'group' => 'Block Class',
);
}