SearchBlockTestCase::testSearchFormBlock

7 search.test SearchBlockTestCase::testSearchFormBlock()
8 search.test SearchBlockTestCase::testSearchFormBlock()

File

modules/search/search.test, line 600
Tests for search.module.

Code

function testSearchFormBlock() {
  // Set block title to confirm that the interface is available.
  $this->drupalPost('admin/structure/block/manage/search/form/configure', array('title' => $this->randomName(8)), t('Save block'));
  $this->assertText(t('The block configuration has been saved.'), t('Block configuration set.'));

  // Set the block to a region to confirm block is available.
  $edit = array();
  $edit['blocks[search_form][region]'] = 'footer';
  $this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
  $this->assertText(t('The block settings have been updated.'), t('Block successfully move to footer region.'));
}
Login or register to post comments