You are here

function BlockAccessEnableTestCase::testUIGranted in Block Access 7

Test UI allows $user1 to do operation

File

tests/op_basic_enable.test, line 51
Tests for block_access / operation enable

Class

BlockAccessEnableTestCase
Tests for block_access / operation enable

Code

function testUIGranted() {
  $this
    ->drupalLogin($this->user1);
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->assertResponse(200);
  $this
    ->assertOption('blocks[block_' . $this->block->delta . '][region]', 'sidebar_first');
}