You are here

function BlockAccessMoveTestCase::testUINotGranted in Block Access 7

Test UI does not allow $user2 to do operation

File

tests/op_basic_move.test, line 76
Tests for block_access / operation move

Class

BlockAccessMoveTestCase
Tests for block_access / operation move

Code

function testUINotGranted() {
  $this
    ->drupalLogin($this->user2);
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->assertResponse(200);
  $this
    ->assertNoOption('blocks[block_' . $this->block->delta . '][region]', 'sidebar_second');
}