function BlockAccessMoveTestCase::testUIGranted in Block Access 7
Test UI allows $user1 to do operation
File
- tests/
op_basic_move.test, line 51 - Tests for block_access / operation move
Class
- BlockAccessMoveTestCase
- Tests for block_access / operation move
Code
function testUIGranted() {
$this
->drupalLogin($this->user1);
$this
->drupalGet('admin/structure/block');
$this
->assertResponse(200);
$this
->assertOption('blocks[block_' . $this->block->delta . '][region]', 'sidebar_second');
}