/**
  * Test removeBlock
  *
  * @param string $block
  * @param array  $expected
  *
  * @dataProvider provideBlocks
  */
 public function testRemoveBlock($block, $expected)
 {
     $this->site->addBlock('block1');
     $this->site->addBlock('block2');
     $this->site->addBlock('block3');
     $this->site->removeBlock($block);
     $this->assertSame($expected, $this->site->getBlocks());
 }