/**
  * Test extend dashboards
  *
  * @covers Yoast_GA_Dashboards::extend_dashboards()
  */
 public function test_extend_dashboards()
 {
     $dashboards = array('sessions' => array('title' => 'Sessions', 'help' => 'Sessions helptext', 'type' => 'graph', 'tab' => 'general'));
     $result = $this->class_instance->extend_dashboards($dashboards);
     $this->assertEquals($result, $dashboards);
 }