protected function FeaturesExtraBlockTestCase::override_fe_block_boxes in Features Extra 7
Change the content of the test block so the component becomes overridden.
File
- tests/
fe_block.test, line 68 - Tests for the Features Extra Block module.
Class
- FeaturesExtraBlockTestCase
- Tests the functionality of FE Block.
Code
protected function override_fe_block_boxes() {
db_update('block_custom')
->fields(array(
'body' => 'overridden',
))
->condition('bid', $this->block->bid)
->execute();
}